| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- class TestModule4 extends \Tools\AModule
- {
- private $installed;
- public $hooked = false;
- public function __construct()
- {
- $this->installed = false;
- }
- public function install()
- {
- return false;
- }
- public function isInstalled()
- {
- return $this->installed;
- }
- public function doAction($ev)
- {
- $this->hooked = $ev;
- }
- public function doShortCode($code, $params)
- {
- }
- public function getParentName()
- { return parent::getName(); }
- public function getName()
- { return "test 4"; }
- public function getDescription()
- { return "My description"; }
- }
- return new TestModule4();
|