R_J
AdminR_J Admin
-
Re: PLUGIN : Animated forum "tour".
In the plugin info include a license to avoid irritations class ForumTour extends Gdn_Plugin { must be class ForumTourPlugin extends Gdn_Plugin { Check if the module should be displayed in the plugin… (View Post)1 -
Re: Asset Pipeline for Vanilla
In my opinion it would be better if all js/css files would be compressed into one file each, that is loaded on every page (not like now, where you can attach resources to specific controllers). That … (View Post)2 -
Re: How to add validation to settings activated via the Configuration model
+1 for that one. But just for the sake of "what is possible": public function settingsController_aah_create($sender) { $sender->permission('Garden.Settings.Manage'); $sender-&g… (View Post)1 -
Re: PLUGIN : Animated forum "tour".
If that was easy, the rest couldn't be too hard! What's your question? You can access config values by using c('Your.Plugin.Key'). Maybe you have to show more of your plugin (code… (View Post)3 -
Re: How to add validation to settings activated via the Configuration model
You can try to do something like that: https://github.com/R-J/EventCalendar/blob/master/class.eventcalendar.plugin.php#L95-L140 and see if you could add validation results after if ($sender->Form-… (View Post)3
