mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
41 lines
894 B
PHP
41 lines
894 B
PHP
<?php
|
|
/**
|
|
* @deprecated Please use {@link DataList} or {@link ArrayList} instead.
|
|
* @package framework
|
|
* @subpackage model
|
|
*/
|
|
class DataObjectSet extends ArrayList {
|
|
|
|
/**
|
|
* @deprecated 3.0
|
|
*/
|
|
public function __construct($items = array()) {
|
|
Deprecation::notice('3.0', 'Use DataList or ArrayList instead');
|
|
|
|
if ($items) {
|
|
if (!is_array($items) || func_num_args() > 1) {
|
|
$items = func_get_args();
|
|
}
|
|
|
|
foreach ($items as $i => $item) {
|
|
if ($item instanceof ViewableData) {
|
|
continue;
|
|
}
|
|
|
|
if (is_object($item) || ArrayLib::is_associative($item)) {
|
|
$items[$i] = new ArrayData($item);
|
|
} else {
|
|
user_error(
|
|
"DataObjectSet::__construct: Passed item #{$i} is not an"
|
|
. ' and object or associative array, can\'t be properly'
|
|
. ' iterated on in templates', E_USER_WARNING
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
parent::__construct($items);
|
|
}
|
|
|
|
}
|