silverstripe-framework/model/ComponentSet.php

10 lines
311 B
PHP
Raw Normal View History

<?php
/**
2011-09-26 05:47:54 +02:00
* @deprecated 3.0 Use ManyManyList or HasManyList
*/
class ComponentSet extends DataObjectSet {
function setComponentInfo($type, $ownerObj, $ownerClass, $tableName, $childClass, $joinField = null) {
user_error("ComponentSet is deprecated; use HasManyList or ManyManyList", E_USER_WARNING);
}
2011-09-26 05:47:54 +02:00
}