Exemplo n.º 1
0
 public function __construct()
 {
     $this->app = JFactory::getApplication();
     $this->input = EB::request();
     $config = EB::config();
     $key = $config->get('integrations_flickr_api_key');
     $secret = $config->get('integrations_flickr_secret_key');
     parent::__construct($key, $secret);
 }
Exemplo n.º 2
0
 public function __construct($key, $secret, $callback)
 {
     $this->callback = $callback;
     parent::__construct($key, $secret);
 }