R_J
AdminR_J Admin
-
Re: Form class - list of available Form objects?
Sure. I use NetBeans from time to time, because it's free. You will also have the benefit that you could debug and thus get a better understanding of how things work (View Post)1 -
Re: Form class - list of available Form objects?
I would advise to use an IDE for developing. Otherwise just open https://github.com/vanilla/vanilla/blob/release/2.2/library/core/class.form.php and look at the available methods. Download many plugi… (View Post)2 -
Re: need to complete the work of vanilla
That is a very interesting approach... Try to find out what the error is and then think about how to fix it. Go to your /index.php and change ini_set('display_errors', 0); to ini_set('display_errors'… (View Post)1 -
Re: Modifying existing table structure - best practices?
Nope, but you also asked about the parameters of set() This will add a column to the discussion table: Gdn::structure() ->table('Discussion') ->column('IsSave', 'tinyint(1)') ->set(false, fa… (View Post)2 -
Re: How to leverage the model to access the database
I do not know how this could be put into a class that matches all thinkable cases. But you surely are free to try your hands on it. I've made a start (code untested and fugly) just trying to think wh… (View Post)2