ILIAS  release_5-2 Revision v5.2.25-18-g3f80b82851
ilCloudPluginConfig Class Reference

Class ilCloudPluginConfig. More...

+ Collaboration diagram for ilCloudPluginConfig:

Public Member Functions

 __construct ($table_name)
 
 setTableName ($table_name)
 
 getTableName ()
 
 __call ($method, $params)
 
 setValue ($key, $value)
 
 getValue ($key)
 
 initDB ()
 
 tableExists ()
 

Static Public Member Functions

static _fromCamelCase ($str)
 
static _toCamelCase ($str, $capitalise_first_char=false)
 

Protected Attributes

 $table_name = ""
 
 $cache = array()
 

Detailed Description

Class ilCloudPluginConfig.

Model class for the administration settings. Note the use of the __call Function. The value max_file_size could be for example set by the method setMaxFileSize without the declaring this method. Similarly it could be get by getMaxFileSize

Author
Timon Amstutz timon.nosp@m..ams.nosp@m.tutz@.nosp@m.ilub.nosp@m..unib.nosp@m.e.ch
fabian Schmid fs@st.nosp@m.uder.nosp@m.-raim.nosp@m.ann..nosp@m.ch
Version
$Id$

Definition at line 17 of file class.ilCloudPluginConfig.php.

Constructor & Destructor Documentation

◆ __construct()

ilCloudPluginConfig::__construct (   $table_name)
Parameters
$table_name

Definition at line 32 of file class.ilCloudPluginConfig.php.

References $table_name.

33  {
34  $this->table_name = $table_name;
35  }

Member Function Documentation

◆ __call()

ilCloudPluginConfig::__call (   $method,
  $params 
)
Parameters
$method
$params
Returns
bool|null

Definition at line 58 of file class.ilCloudPluginConfig.php.

References $params, getValue(), ilCloudPluginConfigException\NO_VALID_GET_OR_SET_FUNCTION, and setValue().

59  {
60  $index = substr($method,3);
61  if (substr($method, 0, 3) == 'get')
62  {
63  if (!isset($this->cache[$index]))
64  {
65  $this->cache[$index] = $this->getValue(self::_fromCamelCase(substr($method, 3)));
66  }
67  if ($this->cache[$index] == null)
68  {
69  $this->cache[$index] = false;
70  }
71 
72  return $this->cache[$index];
73  } else if (substr($method, 0, 3) == 'set')
74  {
75  $this->cache[$index] = $params[0];
76  $this->setValue(self::_fromCamelCase(substr($method, 3)), $params[0]);
77  return true;
78  } else
79  {
81  }
82 
83  }
Class ilCloudPluginConfigException.
$params
Definition: example_049.php:96
+ Here is the call graph for this function:

◆ _fromCamelCase()

static ilCloudPluginConfig::_fromCamelCase (   $str)
static
Parameters
string$str
Returns
string

Definition at line 172 of file class.ilCloudPluginConfig.php.

173  {
174  $str[0] = strtolower($str[0]);
175  $func = create_function('$c', 'return "_" . strtolower($c[1]);');
176  return preg_replace_callback('/([A-Z])/', $func, $str);
177  }

◆ _toCamelCase()

static ilCloudPluginConfig::_toCamelCase (   $str,
  $capitalise_first_char = false 
)
static
Parameters
string$str
bool$capitalise_first_char
Returns
string

Definition at line 184 of file class.ilCloudPluginConfig.php.

185  {
186  if ($capitalise_first_char)
187  {
188  $str[0] = strtoupper($str[0]);
189  }
190  $func = create_function('$c', 'return strtoupper($c[1]);');
191  return preg_replace_callback('/-([a-z])/', $func, $str);
192  }

◆ getTableName()

ilCloudPluginConfig::getTableName ( )
Returns
string

Definition at line 48 of file class.ilCloudPluginConfig.php.

References $table_name.

Referenced by initDB(), and tableExists().

+ Here is the caller graph for this function:

◆ getValue()

ilCloudPluginConfig::getValue (   $key)
Parameters
$key
Returns
bool|string

Definition at line 114 of file class.ilCloudPluginConfig.php.

References $DIC, $ilDB, $result, ilCloudPluginConfigException\TABLE_DOES_NOT_EXIST, and tableExists().

Referenced by __call(), and setValue().

115  {
116  global $DIC;
117  $ilDB = $DIC['ilDB'];
118 
119 
120  if (!$this->tableExists($this->table_name))
121  {
123  }
124 
125  $result = $ilDB->query("SELECT config_value FROM ". $this->table_name ." WHERE config_key = " . $ilDB->quote($key, "text"));
126 
127  if ($result->numRows() == 0)
128  {
129  return false;
130  }
131  $record = $ilDB->fetchAssoc($result);
132  return (string)$record['config_value'];
133  }
$result
Class ilCloudPluginConfigException.
global $ilDB
global $DIC
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ initDB()

ilCloudPluginConfig::initDB ( )
Returns
bool

Definition at line 140 of file class.ilCloudPluginConfig.php.

References $DIC, $ilDB, array, and getTableName().

141  {
142  global $DIC;
143  $ilDB = $DIC['ilDB'];
144 
145  if (!$ilDB->tableExists($this->getTableName()))
146  {
147  $fields = array(
148  'config_key' => array(
149  'type' => 'text',
150  'length' => 128,
151  'notnull' => true),
152  'config_value' => array(
153  'type' => 'clob',
154  'notnull' => false),);
155  $ilDB->createTable($this->getTableName(), $fields);
156  $ilDB->addPrimaryKey($this->getTableName(), array("config_key"));
157  }
158 
159  return true;
160  }
Create styles array
The data for the language used.
global $ilDB
global $DIC
+ Here is the call graph for this function:

◆ setTableName()

ilCloudPluginConfig::setTableName (   $table_name)
Parameters
string$table_name

Definition at line 40 of file class.ilCloudPluginConfig.php.

References $table_name.

41  {
42  $this->table_name = $table_name;
43  }

◆ setValue()

ilCloudPluginConfig::setValue (   $key,
  $value 
)
Parameters
$key
$value

Definition at line 89 of file class.ilCloudPluginConfig.php.

References $DIC, $ilDB, array, getValue(), and ilCloudPluginConfigException\TABLE_DOES_NOT_EXIST.

Referenced by __call().

90  {
91  global $DIC;
92  $ilDB = $DIC['ilDB'];
93 
94  if(!$ilDB->tableExists($this->table_name))
95  {
97  }
98 
99  if (!is_string($this->getValue($key)))
100  {
101  $ilDB->insert($this->table_name, array("config_key" => array("text", $key), "config_value" => array("text", $value)));
102  }
103 
104  else
105  {
106  $ilDB->update($this->table_name, array("config_key" => array("text", $key), "config_value" => array("text", $value)), array("config_key" => array("text", $key)));
107  }
108  }
Class ilCloudPluginConfigException.
Create styles array
The data for the language used.
global $ilDB
global $DIC
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ tableExists()

ilCloudPluginConfig::tableExists ( )

Definition at line 194 of file class.ilCloudPluginConfig.php.

References $DIC, $ilDB, $result, and getTableName().

Referenced by getValue().

195  {
196  global $DIC;
197  $ilDB = $DIC['ilDB'];
198  $result = $ilDB->query("show tables like '".$this->getTableName()."'");
199 
200  if ($result->numRows() == 0)
201  {
202  return false;
203  }
204  else return true;
205  }
$result
global $ilDB
global $DIC
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $cache

ilCloudPluginConfig::$cache = array()
protected

Definition at line 27 of file class.ilCloudPluginConfig.php.

◆ $table_name

ilCloudPluginConfig::$table_name = ""
protected

Definition at line 22 of file class.ilCloudPluginConfig.php.

Referenced by __construct(), getTableName(), and setTableName().


The documentation for this class was generated from the following file: