本文整理汇总了PHP中DatabaseFactory::updateElementList方法的典型用法代码示例。如果您正苦于以下问题:PHP DatabaseFactory::updateElementList方法的具体用法?PHP DatabaseFactory::updateElementList怎么用?PHP DatabaseFactory::updateElementList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DatabaseFactory
的用法示例。
在下文中一共展示了DatabaseFactory::updateElementList方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: updateElement
/**
* Updates an element in database
* @param Element $element The element to update
* @return int The affected rows number
*/
public static function updateElement($element)
{
$elementClass = $element->getElementClass();
$tableName = DatabaseFactory::getElementTableName($elementClass);
// '_has_' tables have 2 primary keys
if (!StringTool::contains($tableName, ElementFactory::TABLE_JOIN_SEPARATOR)) {
$conditions = $tableName . '_id = \'' . $element->id . '\'';
} else {
$tableList = StringTool::split(ElementFactory::TABLE_JOIN_SEPARATOR, $tableName);
// Sets condition from both tables
$tableFieldName = $tableList[0] . '_id';
$conditions = $tableFieldName . ' = \'' . $element->{$tableFieldName} . '\'';
$tableFieldName = $tableList[1] . '_id';
$conditions .= ' AND ' . $tableFieldName . ' = \'' . $element->{$tableFieldName} . '\'';
}
$updatedPropertyList = $element->getUpdatedPropertyList();
// Updates the element in database
$affectedRowNumber = DatabaseFactory::updateElementList($elementClass, $updatedPropertyList, $conditions);
return $affectedRowNumber;
}