R_J
AdminR_J Admin
-
Re: Does not work Advanced Editor post format of wysiwyg
Opera Mini does not support icon fonts: https://dev.opera.com/articles/making-sites-work-opera-mini/ Maybe you can use a tool like this one https://onlinefontconverter.com and add the additional styl… (View Post)1 -
Re: Doesn't work for NewDiscussion Module
get_declared_classes will not work: modules are loaded dynamically. Try it yourself: public function settingsController_nope_create($sender, $args) { decho(get_declared_classes()); } And the look at … (View Post)1 -
Re: Doesn't work for NewDiscussion Module
Okay, it is not that obvious ;-) You've started with looking at controller->addModule() which is the right start. The AfterAddModule would be a good thing to look at, but it doesn't have the Modul… (View Post)2 -
Re: Plugin Development
The standards mentioned above are just a convention. Before that, Vanilla code used to use 3 spaces for indenting, upper case method names and such. It really don't matter what standard you use, but … (View Post)1 -
Re: Utility/structure needed? once upgrade to 2.2.1 done
You can safely ignore: update GDN_Role `Role` set Type = 'applicant' where RoleID = '4'; update GDN_Role `Role` set Type = 'member' where RoleID = '8'; update GDN_Role `Role` set Type = 'unconfirmed'… (View Post)3