mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
fac78448a7
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@58304 467b73ca-7a2a-4603-9d3b-597d59a354a9
67 lines
1.5 KiB
PHP
Executable File
67 lines
1.5 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Lets you wrap a bunch of array data into a {@link ViewableData} object.
|
|
*
|
|
* <code>
|
|
* new ArrayData(array(
|
|
* "ClassName" => "Page",
|
|
* "AddAction" => "Add a new Page page",
|
|
* ));
|
|
* </code>
|
|
*
|
|
* @package sapphire
|
|
* @subpackage view
|
|
*/
|
|
class ArrayData extends ViewableData {
|
|
|
|
protected $array;
|
|
|
|
/**
|
|
* @param object|array $array Either an object with simple properties or an associative array.
|
|
* Converts object-properties to indices of an associative array.
|
|
*/
|
|
public function __construct($array) {
|
|
if(is_object($array)) {
|
|
$this->array = self::object_to_array($array);
|
|
} elseif(is_array($array) && ArrayLib::is_associative($array)) {
|
|
$this->array = $array;
|
|
} else {
|
|
$this->array = $array;
|
|
user_error(
|
|
"ArrayData::__construct: Parameter needs to be an object or associative array",
|
|
E_USER_WARNING
|
|
);
|
|
}
|
|
}
|
|
|
|
public function getField($f) {
|
|
if((is_object($this->array[$f]) && !$this->array[$f] instanceof ArrayData) || (is_array($this->array[$f]) && ArrayLib::is_associative($this->array[$f]))) {
|
|
return new ArrayData($this->array[$f]);
|
|
} else {
|
|
return $this->array[$f];
|
|
}
|
|
}
|
|
|
|
public function hasField($f) {
|
|
return isset($this->array[$f]);
|
|
}
|
|
|
|
/**
|
|
* Converts an object with simple properties to
|
|
* an associative array.
|
|
*
|
|
* @param obj $obj
|
|
* @return array
|
|
*/
|
|
protected static function object_to_array($obj) {
|
|
$arr = array();
|
|
foreach($obj as $k=>$v) {
|
|
$arr[$k] = $v;
|
|
}
|
|
|
|
return $arr;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|