Пример #1
0
 /**
  * Class constructor
  *
  * @access protected
  * @param	array An optional associative array of configuration settings.
  * Recognized key values include 'clientId' (this list is not meant to be comprehensive).
  */
 function __construct($config = array())
 {
     $config['clientId'] = 1;
     parent::__construct($config);
     //Set the root in the URI based on the application name
     JURI::root(null, str_replace('/' . $this->getName(), '', JURI::base(true)));
 }
Пример #2
0
	/**
	* Class constructor
	*
	* @access protected
	* @param	array An optional associative array of configuration settings.
	* Recognized key values include 'clientId' (this list is not meant to be comprehensive).
	*/
	function __construct($config = array())
	{
		$config['clientId']   = 0;
	    $config['multisite']  = true;
	    
		parent::__construct($config);
	}
Пример #3
0
 /**
  * Class constructor
  *
  * @param	array An optional associative array of configuration settings.
  * Recognized key values include 'clientId' (this list is not meant to be comprehensive).
  */
 public function __construct($config = array())
 {
     $config['clientId'] = 0;
     \Event::listen(function ($event) {
         // This must be done before the session is read, otherwise it will overwrite
         // the existing session with a guest non-https session prior to redirecting to https
         // NOTE: we're including a cli check here because the console currently uses the 'site'
         // application.  This should be remedied in the new framework.
         $app = $event->getArgument('app');
         if ($app->getCfg('force_ssl') == 2 && php_sapi_name() != 'cli') {
             $uri = JURI::getInstance();
             if (strtolower($uri->getScheme()) != 'https') {
                 // We also can't use the Application::redirect method here as
                 // it tries to use JFactory::getDocument, which doesn't work
                 // prior to application initialization
                 $uri->setScheme('https');
                 header('HTTP/1.1 303 See other');
                 header('Location: ' . (string) $uri);
                 header('Content-Type: text/html;');
                 $app->close();
             }
         }
     }, 'application_onBeforeSessionCreate');
     parent::__construct($config);
 }
Пример #4
0
 /**
  * Class constructor
  *
  * @access protected
  * @param	array An optional associative array of configuration settings.
  * Recognized key values include 'clientId' (this list is not meant to be comprehensive).
  */
 function __construct($config = array())
 {
     $config['clientId'] = 0;
     parent::__construct($config);
     //Set the root in the URI based on the application name
     JURI::root(null, str_replace('/' . JPATH_FORUM_PATH, '', JURI::base(true)));
 }
 /**
  * Class constructor
  *
  * @param	array $config	An optional associative array of configuration settings.
  * Recognized key values include 'clientId' (this list is not meant to be comprehensive).
  *
  * @return	void
  */
 public function __construct(array $config = array())
 {
     $config['clientId'] = 2;
     parent::__construct($config);
     $this->_createConfiguration('');
     // Set the root in the URI based on the application name.
     JURI::root(null, str_replace('/' . $this->getName(), '', JURI::base(true)));
 }
Пример #6
0
 /**
  * Class constructor
  *
  * @access protected
  * @param	array An optional associative array of configuration settings.
  * Recognized key values include 'clientId' (this list is not meant to be comprehensive).
  */
 function __construct($config = array())
 {
     $config['clientId'] = 2;
     parent::__construct($config);
     JError::setErrorHandling(E_ALL, 'Ignore');
     $this->_createConfiguration();
     //Set the root in the URI based on the application name
     JURI::root(null, str_replace('/' . $this->getName(), '', JURI::base(true)));
 }
Пример #7
0
 /**
  * Class constructor
  *
  * @access protected
  * @param	array An optional associative array of configuration settings.
  * Recognized key values include 'clientId' (this list is not meant to be comprehensive).
  */
 function __construct($config = array())
 {
     $config['clientId'] = 1;
     $config['multisite'] = true;
     $config['session_autostart'] = true;
     //override the configruation settings
     parent::__construct($config);
     //Set the root in the URI based on the application name
     JURI::root(null, str_replace('/' . $this->getName(), '', JURI::base(true)));
 }
Пример #8
0
 /**
  * Class constructor
  *
  * @param	array $config	An optional associative array of configuration settings.
  * Recognized key values include 'clientId' (this list is not meant to be comprehensive).
  *
  * @return	void
  */
 public function __construct(array $config = array())
 {
     $config['clientId'] = 2;
     parent::__construct($config);
     $this->_createConfiguration('');
     // Set the root in the URI one level up.
     $parts = explode('/', JUri::base(true));
     array_pop($parts);
     JUri::root(null, implode('/', $parts));
 }
Пример #9
0
 /**
  * Class constructor
  *
  * @param   array An optional associative array of configuration settings.
  *                Recognized key values include 'clientId' (this list is not meant to be comprehensive).
  */
 public function __construct($config = array())
 {
     $config['clientId'] = 0;
     parent::__construct($config);
 }
Пример #10
0
 /**
  * Class constructor.
  *
  * @param   array  $config  A configuration array including optional elements such as session
  * session_name, clientId and others. This is not exhaustive.
  * @return  void
  */
 public function __construct($config = array())
 {
     JLoader::import('joomla.user.user');
     JLoader::register('JText', JPATH_LIBRARIES . DS . 'joomla' . DS . 'methods.php');
     JLoader::import('joomla.filter.filterinput');
     JLoader::import('joomla.environment.uri');
     JLoader::import('Hubzero.Api.Response');
     JLoader::import('Hubzero.Api.Request');
     $config['clientId'] = 4;
     /*$this->unregister_long_arrays();
     		$this->unregister_globals();
     		$this->fix_http_headers();
     
     		$this->request = new \Hubzero\Api\Request();
     		$this->response = new \Hubzero\Api\Response();
     		$this->output = '';*/
     parent::__construct($config);
 }
Пример #11
0
 /**
  * Class constructor
  * @param database A database connection object
  * @param string The url option [DEPRECATED]
  * @param string The path of the mos directory [DEPRECATED]
  */
 function mosMainFrame(&$db, $option, $basePath = null, $client = 0)
 {
     $config = array();
     $config['clientId'] = $client;
     parent::__construct($config);
 }
Пример #12
0
 /**
  * Cli application constructor
  *
  * @param  array $config an optional associative array of configuration settings
  * @return void
  */
 public function __construct($config = [])
 {
     $config['clientId'] = 6;
     parent::__construct($config);
 }
Пример #13
0
 /**
  * Class constructor
  *
  * @param    array An optional associative array of configuration settings.
  * Recognized key values include 'clientId' (this list is not meant to be comprehensive).
  */
 public function __construct($config = array())
 {
     $config['clientId'] = 0;
     parent::__construct($config);
     $this->_verbose = Commandline::getInstance()->get('V');
 }