This question is based on http://forum.epesibim.com/viewtopic.php?f=22&t=3337
You mentioned variables:
Variable::set('xero_key', ...);
Variable::get('xero_key');
I presume these values are persistent and global across sessions?
Also how do I add an admin form? I've got as far as adding this to the common file...
class Custom_XeroConnectCommon extends Base_AdminModuleCommon {
public static function admin_caption() {
return array('label'=>__('Xero Connect'), 'section'=>__('Server Configuration'));
}
}
.. but this does not seem to do anything.
Also if I wish to add some text boxes to the form (non file upload fields) then am I after the QuickForm or Utils/FileUpload or a combination of both ?
Regards
Glenn