R_J
AdminR_J Admin
-
Re: How do I write a Plugin with a Module?
We've started with PluginInfo and I want to elaborate just a little bit on it again. There are quite a lot of options that you can specify here and we started with barebone, but there are some m… (View Post)1 -
Re: How do I write a Plugin with a Module?
Here comes the form (/plugins/Countdown/views/settings.php): <?php defined('APPLICATION') or die();$Output = <<<EOS<_h1>Countdown Module<_/h1><_div class="In… (View Post)1 -
Re: How do I write a Plugin with a Module?
Step 3 will be the hardest and longest part. Not because using the configuration is difficult, but because using forms include more steps by itself: 1. design a form 2. insert configuration values wh… (View Post)1 -
Re: How do I write a Plugin with a Module?
Since you do not know how to use the configuration by now, use something like that in the ToString function: public function ToString() { $CountdownDate = "June 28, 2014 2:00 AM"; $Countdow… (View Post)1 -
Re: How do I write a Plugin with a Module?
Well, I'm in teaching mode, so here is step2: class.countdownmodule.php A module should do/show something and you have already written some code. Mind sharing it with us? We could implement it i… (View Post)3
