hgtonight
MVPhgtonight MVP
This is an activity!
Reactions
-
Re: Vanilla API get not found using the provided endpoint
Your token doesn't look like it is constructed properly, but that should throw an authentication error. What version of Vanilla are you running? (Derp, you said it in your first post) :S (View Post)1 -
Re: Any to give users their own selection of homepage layout?
I considered doing that originally. The current version only pulls in data when on a useful page (and even then, just one query). It might be better to request '%' on the profile edit page.… (View Post)2 -
Re: Any to give users their own selection of homepage layout?
Interfaces and inheritance are two facets of object oriented programming (OOP). Knowing a class implements an interface and knowing the interface lets you isolate functionality without knowing what i… (View Post)3 -
Re: Any to give users their own selection of homepage layout?
I just looked at the source code to make sure I wasn't leading you astray. In Vanilla 2.1, you need to define a Setup() method to implement the Gdn_IPlugin interface. I.e. class ABC implements G… (View Post)3 -
Re: Any to give users their own selection of homepage layout?
You only need to define Setup and Disable functions when you are implementing the plugin interface. Since you are extending the plugin class (which already defines the required interface functions), … (View Post)3
