-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
They should now adhere closer to the coding standard
- Loading branch information
1 parent
abd1c9c
commit 8673a04
Showing
9 changed files
with
44 additions
and
37 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,19 +1,22 @@ | ||
<?php | ||
|
||
use dokuwiki\Extension\ActionPlugin; | ||
use dokuwiki\Extension\EventHandler; | ||
use dokuwiki\Extension\Event; | ||
|
||
/** | ||
* DokuWiki Plugin @@PLUGIN_NAME@@ (Action Component) | ||
* | ||
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html | ||
* @author @@AUTHOR_NAME@@ <@@AUTHOR_MAIL@@> | ||
* @author @@AUTHOR_NAME@@ <@@AUTHOR_MAIL@@> | ||
*/ | ||
class @@PLUGIN_COMPONENT_NAME@@ extends \dokuwiki\Extension\ActionPlugin | ||
class @@PLUGIN_COMPONENT_NAME@@ extends ActionPlugin | ||
{ | ||
|
||
/** @inheritDoc */ | ||
public function register(Doku_Event_Handler $controller) | ||
public function register(EventHandler $controller) | ||
{ | ||
@@REGISTER@@ | ||
} | ||
|
||
@@HANDLERS@@ | ||
} | ||
|
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
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
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
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,12 +1,13 @@ | ||
<?php | ||
|
||
use dokuwiki\Extension\Plugin; | ||
|
||
/** | ||
* DokuWiki Plugin @@PLUGIN_NAME@@ (Helper Component) | ||
* | ||
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html | ||
* @author @@AUTHOR_NAME@@ <@@AUTHOR_MAIL@@> | ||
* @author @@AUTHOR_NAME@@ <@@AUTHOR_MAIL@@> | ||
*/ | ||
class @@PLUGIN_COMPONENT_NAME@@ extends \dokuwiki\Extension\Plugin | ||
class @@PLUGIN_COMPONENT_NAME@@ extends 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
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
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
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