businessdad
MVPbusinessdad MVP
Reactions
-
Re: How do I go about calling a function (method) in one plugin from another plugin.
You can call other plugins by using Gdn::PluginManager(). Simplest example: // Retrieve plugin by class name$PluginInstance = Gdn::PluginManager()->GetPluginInstance('PluginOne');// Same as above,… (View Post)4 -
Re: just an idea: Category Notification
@remzi Vanilla 2.1 is available, but it's still in Alpha/Beta stage. There are people who use it without any issue, but beware that it may contain bugs. (View Post)1 -
Re: Querying a Multiple Databases in the Garden framework?
As far as I know, Vanilla only instantiates one Database class, which uses the MySQL driver and the settings defined in the config.php file. To query another database, you would have to do the follow… (View Post)1 -
Re: just an idea: Category Notification
Vanilla 2.1 already includes the possibility of getting notified when a new thread is posted in specific categories. To enable such feature, you must grant "Advanced Notifications" permissi… (View Post)1 -
Re: Missing thread
@present559 I would suggest the following course of action: 1. As @peregrine wrote, check the log to see if anyone deleted or hid the discussion. 2. If you can't find anything in the log, run a query… (View Post)1