xPDO.newObject
Последнее обновление Apr 20th, 2021 | История страницы | Улучшить эту страницу | Сообщить о проблеме
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$301 per month—let's make that $500!
Learn morexPDO::newObject¶
Создает новый экземпляр указанного класса.
Все новые объекты, созданные с помощью этого метода, являются временными до xPDOObject::save() вызывается в первый раз и отражается свойством xPDOObject::$_new
.
Синтаксис¶
API Docs: https://api.modx.com/revolution/2.2/db_core_xpdo_xpdo.class.html#\xPDO::newObject()
object|null newObject (string $className, [array $fields = array ()])
Пример¶
Создайте новый объект Box:
$box = $xpdo->newObject('Box');
Создайте новый объект Box с уже установленными шириной и высотой:
$box = $xpdo->newObject('Box',array(
'width' => 10,
'height' => 4,
));
Смотрите также¶
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$301 per month—let's make that $500!
Learn more