Bleistivt
ModeratorBleistivt Moderator
Reactions
-
Re: GDN_Comment - When BBCode or HTML Format?
Usually it is the config value of Garden.InputFormatter. This may be one of * Html * Markdown * BBCode * Text * TextEx * Wysiwyg (View Post)3 -
Re: How to retrieve the plugin own Plugininfo fields
Gdn::pluginManager()->getPluginInfo('name of the plugin'); (View Post)12 -
Re: Standalone Vanilla Forum Installation (Admin Locked Out Issue Resolved)
Vanilla will remove all additional super admin flags when updating. But I'd actually argue for not using the super admin account or not having a super admin at all, especially if you are developing. (View Post)2 -
Re: Can members only delete your comments and discussions?
Add to conf/config.php: $Configuration['Vanilla']['Comments']['AllowSelfDelete'] = true; (View Post)9 -
Re: How to leverage the model to access the database
Once you have multiple tables, you will need to write your own methods, since the framework can't really guess what their relationship is. One important property of Gdn_Model is that there is always … (View Post)3