コード例 #1
0
ファイル: oci.php プロジェクト: omusico/isle-web-framework
 public function initialize($config)
 {
     parent::initialize($config);
     if (array_key_exists('dbtablespace', $config)) {
         $this->dbtablespace = $config['dbtablespace'];
     } else {
         $this->dbtablespace = 'USERS';
     }
     \OC_Config::setValue('dbtablespace', $this->dbtablespace);
 }
コード例 #2
0
ファイル: oci.php プロジェクト: brunomilet/owncloud-core
 public function initialize($config)
 {
     parent::initialize($config);
     if (array_key_exists('dbtablespace', $config)) {
         $this->dbtablespace = $config['dbtablespace'];
     } else {
         $this->dbtablespace = 'USERS';
     }
     // allow empty hostname for oracle
     $this->dbhost = $config['dbhost'];
     \OC_Config::setValues(['dbhost' => $this->dbhost, 'dbtablespace' => $this->dbtablespace]);
 }