hgtonight
MVPhgtonight MVP
This is an activity!
Reactions
-
Re: Create new discussion on registration
Use the user object loaded on line 4 of my example. Either inspect it with your debugger or var_dump it. (View Post)1 -
Re: Recount Points
MySQL. You probably have PHPmyAdmin on your server. Use that. (View Post)1 -
Re: Reading/Writing form settings in admin dashboard
http://vanillaforums.org/discussion/27858/plugins-namespace (View Post)2 -
Re: Awarding points for completing polls
I would highly suggest using the static method Yaga::GivePoints for a tighter integration if/when the system gets expanded. It currently uses the exact same prototype as the user model. (View Post)1 -
Re: Modifying existing table structure - best practices?
public function Structure() { Gdn::Structure()->Table('Discussion') ->Column('AdditionalData', int, true, 'index') ->Set();}public function Setup() { $this->Structure();} Put your changes… (View Post)4