'value of the Configure::One[key1]')); * Configure::write('One', array('key1'=>'value of the Configure::One[key1]', 'key2'=>'value of the Configure::One[key2]'); * Configure::write(array('One.key1' => 'value of the Configure::One[key1]', 'One.key2' => 'value of the Configure::One[key2]')); * * @param mixed $config string or array of var to write * @param mixed $value to set for key. * @return void */ public static function write($config, $value = null) { $_this = self::getInstance(); if (!is_array($config)) { $config = array($config => $value); } $newConfig = $_this->getAll(); foreach ($config as $name => $value) { $newConfig[$name] = $value; } $_this->setAll($newConfig); } /** * @param string $var * @return array */ public static function read_array($var) { $stuff = self::read($var); if (!is_array($stuff)) { trigger_error('In ' . __FUNCTION__ . ": expected config $var to be an array, but received a " . gettype($stuff), E_USER_ERROR); } return $stuff; } /** * @param string $var * @return string */ public static function read_string($var) { $stuff = self::read($var); if ($stuff === null) { return ''; } if (!is_string($stuff)) { trigger_error('In ' . __FUNCTION__ . ": expected config $var to be a string, but received a " . gettype($stuff), E_USER_ERROR); return ''; } return $stuff; } /** * Used to read Configure::$var * * Usage * Configure::read('Name'); will return all values for Name * Configure::read('Name.key'); will return only the value of Configure::Name[key] * * @param string $var Variable to obtain * @return array|string|null|bool some value * @access public */ public static function read($var) { $_this = self::getInstance(); $config = $_this->getAll(); if ($var === 'all') { return $config; } if (isset($config[$var])) { return $config[$var]; } if (!in_array($var, self::$deprecated_options)) { error_log('Config::read(): attempt to read undefined config option "' . $var . '", returning null'); } return null; } /** * read Config::$var and apply sprintf on it * also checks if $var is changed by sprintf - if not, it writes a warning to error_log * * @param string $var Variable to obtain * @param string $value Value to use as sprintf parameter * @return string value of Config::$var, parsed by sprintf */ public static function read_f($var, $value) { $text = self::read_string($var); $newtext = sprintf($text, $value); # check if sprintf changed something - if not, there are chances that $text didn't contain a %s if ($text == $newtext) { error_log("$var used via read_f, but nothing replaced (value $value)"); } return $newtext; } /** * Used to read Config::$var, converted to boolean * (obviously only useful for settings that can be YES or NO, or boolean like values) * * Usage * Configure::read('Name'); will return the value for Name, converted to boolean * * @param string $var Variable to obtain * @return bool value of Configure::$var (TRUE (on YES/yes) or FALSE (on NO/no/not set/unknown value) */ public static function bool($var) { $value = self::read($var); if (is_bool($value)) { return $value; } if (!is_string($value)) { trigger_error('In ' . __FUNCTION__ . ": expected config $var to be a string, but received a " . gettype($value), E_USER_ERROR); error_log("config $var should be a string, found: " . json_encode($value)); return false; } $value = strtoupper($value); if ($value == 'YES' || $value == 'TRUE') { # YES return true; } elseif ($value == 'NO' || $value == 'FALSE') { # NO return false; } else { # unknown value # show and log error message on unknown value $msg = "\$CONF['$var'] has an invalid value, should be 'YES' or 'NO'"; flash_error($msg); error_log("$msg (value: $value)"); return false; } } /** * Used to read Config::$var, converted to bool, returned as integer (0 or 1) * @see bool() */ public static function intbool($var) { return Config::bool($var) ? 1 : 0; } /** * Get translated text from $PALANG * (wrapper for self::read(), see also the comments there) * * @param string $var Variable to obtain * @return string value of $PALANG[$var] * @access public */ public static function lang($var) { $languages = self::read_array('__LANG'); $value = $languages[$var] ?? ''; if (!is_string($value)) { trigger_error('In ' . __FUNCTION__ . ": expected config $var to be a string , but received a " . gettype($value), E_USER_ERROR); } return $value; } /** * Get translated text from $PALANG and apply sprintf on it * (wrapper for self::read_f(), see also the comments there) * * @param string $var Text (from $PALANG) to obtain * @param string $value Value to use as sprintf parameter * @return string value of $PALANG[$var], parsed by sprintf */ public static function lang_f($var, $value) { $all = self::read_array('__LANG'); $text = $all[$var] ?? ''; $newtext = sprintf($text, $value); # check if sprintf changed something - if not, there are chances that $text didn't contain a %s if ($text == $newtext) { error_log("$var used via read_f, but nothing replaced (value $value)"); } return $newtext; } /** * @return array */ public function getAll() { $output = $this->config; return $output; } /** * @param array $config */ public function setAll(array $config) { $this->config = $config; } } /* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */