write new Module
Posted: Fri Aug 01, 2008 6:28 pm
I read in http://wiki.cmsmadesimple.org/index.php ... dule_class
Extending the CMSModule class
where I should add this code, to which file ?
.........
All I need to include some page using and I want to insert it in my templates or page bu using tags {MyModule}
thanks you and sorry for poor english
Extending the CMSModule class
Code: Select all
class MyModule extends CMSModule {
function MyModule() {
$this->CMSModule(); // call the parent constructor
...your own constructor code...
}
}
.........
All I need to include some page using and I want to insert it in my templates or page bu using tags {MyModule}
thanks you and sorry for poor english