/**
  * Constructor
  * @param Owner $owner
  * @return FacebookPluginConfigurationController
  */
 public function __construct($owner)
 {
     parent::__construct($owner, 'facebook');
     $this->disableCaching();
     $this->owner = $owner;
     $this->id = DAOFactory::getDAO('InstanceDAO');
     $this->od = DAOFactory::getDAO('OwnerDAO');
     $this->oid = DAOFactory::getDAO('OwnerInstanceDAO');
 }
 /**
  * Constructor
  * @param Owner $owner
  * @return FoursquarePluginConfigurationController
  */
 public function __construct(Owner $owner)
 {
     /* Call the parents class constructor with the ID of the TU user who is adding this plugin to there dashboard
      * and the folder the plugin lives in
      */
     parent::__construct($owner, 'foursquare');
     // Disable caching
     $this->disableCaching();
     // Set the global owner variable to the value passed into the constructor
     $this->owner = $owner;
 }
 /**
  * Constructor
  * @param Owner $owner
  * @return GooglePlusPluginConfigurationController
  */
 public function __construct($owner)
 {
     parent::__construct($owner, 'googleplus');
     $this->disableCaching();
     $this->owner = $owner;
 }
 public function __construct($owner)
 {
     parent::__construct($owner, 'facebook');
     $this->disableCaching();
 }
 /**
  * Constructor
  * @param Owner $owner
  * @return InstagramPluginConfigurationController
  */
 public function __construct($owner)
 {
     parent::__construct($owner, 'instagram');
     $this->disableCaching();
     $this->owner = $owner;
 }
 public function __construct($owner)
 {
     parent::__construct($owner, 'insightsgenerator');
     $this->disableCaching();
     $this->owner = $owner;
 }
 public function __construct(Owner $owner, $folder_name, $instance_username)
 {
     parent::__construct($owner, $folder_name);
     $this->instance_username = $instance_username;
 }