R_J
AdminR_J Admin
-
Re: Gdn_Form - Associative Arrays?
I wouldn't say you have to modify the form class. If you look at checkboxes in that class you find the functions Checkbox, CheckboxList, CheckboxGrid, etc. Each function has a different use case… (View Post)4 -
Re: Reading/Writing form settings in admin dashboard
Building a setting screen is really easy! There are a lot of helpers you can use. For a category specific example look here: https://github.com/R-J/EventCalendar/blob/master/class.eventcalendar.plugi… (View Post)1 -
Re: How Can I Change Global Header ?
You would have to look for the words "Theme" or "default.master.tpl". Read here for more information: http://vanillawiki.homebrewforums.net/index.php/Themes (View Post)2 -
Re: Reading/Writing form settings in admin dashboard
That's all you need: public function settingsController_autoCategory_create($sender) { $sender->permission($this->getPluginKey('SettingsPermission')); $sender->setData('T… (View Post)6 -
Re: Reading/Writing form settings in admin dashboard
And if you are beginning writing plugins for Vanilla, take a look at the coding standards: https://github.com/vanilla/addons/tree/master/standards/Vanilla Moreover I have changed Plugins.AutosinkinCa… (View Post)1
