Skip to content

Commit

Permalink
Add license and check for DOKU_INC in action and helper part
Browse files Browse the repository at this point in the history
  • Loading branch information
michitux committed Dec 30, 2012
1 parent 89da326 commit 7363e4a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
11 changes: 9 additions & 2 deletions action.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
<?php
/**
* Action part of the pagemove plugin
* Plugin : Pagemove
*
* @author Michael Hamann <[email protected]>
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Michael Hamann <[email protected]>
*/
// must be run within Dokuwiki
if (!defined('DOKU_INC')) die();

/**
* Action part of the pagemove plugin
*/
class action_plugin_pagemove extends DokuWiki_Action_Plugin {
/**
Expand Down
11 changes: 9 additions & 2 deletions helper.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
<?php
/**
* Helper part of the pagemove plugins.
* Plugin : Pagemove
*
* @author Michael Hamann <[email protected]>
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Michael Hamann <[email protected]>
*/
// must be run within Dokuwiki
if (!defined('DOKU_INC')) die();

/**
* Helper part of the pagemove plugin.
*/
class helper_plugin_pagemove extends DokuWiki_Plugin {
/**
Expand Down

0 comments on commit 7363e4a

Please sign in to comment.