-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add license and check for DOKU_INC in action and helper part
- Loading branch information
Showing
2 changed files
with
18 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { | ||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { | ||
/** | ||
|