Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Can't display a custom Module
I created a test module class.helloworldmodule.php
added it to /vanilla/modules folder
then opened class.discussionscontroller.php in /vanilla/controllers folder
and added
or
to call the new module.
I believe I did everything right that's explained in the documentation to add a new module but still something is wrong I guess.
<?php if (!defined('APPLICATION')) exit();
class HelloWorldModule extends Module {
public function AssetTarget() {
return 'Panel';
}
public function ToString() {
return 'Hello World!';
}
}
added it to /vanilla/modules folder
then opened class.discussionscontroller.php in /vanilla/controllers folder
and added
$this->AddModule('HelloWorldModule');
or
$this->AddModule('HelloWorldModule' , 'Content');
to call the new module.
I believe I did everything right that's explained in the documentation to add a new module but still something is wrong I guess.
Tagged:
0
Answers