R_J
AdminR_J Admin
-
Re: Documentation / Developer Program / Codex
A better documentation would be something I still desperatly need. For every plugin I'm working on, I have to study Gardens source code and all the plugins I can get hold of. But I'm never sure if th… (View Post)3 -
Re: Confused with database and models
$CommentModel = new CommentModel();$Comments = $CommentModel->Get($DiscussionID)foreach ($Comments as $Comment) { $sum += $Comment->Karma;} (View Post)2 -
Re: Confused with database and models
You should try to copy the names of common used variables. Models are always called the same as the classes are named. So it is not "Commentsmodel" but "CommentModel". If you use … (View Post)3 -
Re: [V2.0.18.8] Two-in-one: "new user registered callback/ default user image" and "updating a DB value"
I think this is a very important part of the sentence you're disagreeing: if you are changing the core you are technically forking the project. If you by any means want to fork the repo, do it in a w… (View Post)1 -
Re: [Tutorial] How to change the order of modules and menu items
You can read and write to the config easily: $PluginSort = C('Garden.DashboardMenu.Sort');array_unshift($PluginSort, 'YourPlugin');SaveToConfig('Garden.DashboardMenu.Sort', $PluginSort); (View Post)1
