This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<action namespace="after_app_init"> | |
<action namespace="is_connected"> | |
<action namespace="load_dashboard"> | |
<action namespace="before_body_content"></action> | |
<action namespace="do_enable_module"></action> | |
<action namespace="do_disable_module"></action> | |
<action namespace="do_extract_module"></action> | |
<action namespace="do_remove_module"></action> | |
<action namespace="load_dashboard_home"></action> |
This file contains hidden or 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
<?php | |
class MyEntryModule extends Tendoo_Module | |
{ | |
/** | |
* Constructor is used to build the module | |
* And to register actions and filters | |
**/ | |
public function __construct() | |
{ | |
parent::__construct(); |
This file contains hidden or 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
<?xml version="1.0"?> | |
<application> | |
<namespace>my_namespace</namespace> | |
<name>My Module</name> | |
<description>My module description</description> | |
<version>1.0</version> | |
<main>entry.php</main> | |
<language>language/</language> | |
<dependencies> | |
<module namespace="somemodule">Module Name</module> |
NewerOlder