本文整理匯總了PHP中DatabaseObject::update方法的典型用法代碼示例。如果您正苦於以下問題:PHP DatabaseObject::update方法的具體用法?PHP DatabaseObject::update怎麽用?PHP DatabaseObject::update使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類DatabaseObject
的用法示例。
在下文中一共展示了DatabaseObject::update方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: update
/**
* Update the language.
*
* @param array $p_values
* @param boolean $p_commit
* @param boolean $p_isSql
* @return boolean
*/
public function update($p_values = null, $p_commit = true, $p_isSql = false)
{
$success = parent::update($p_values, $p_commit, $p_isSql);
if (!$success) {
return false;
}
CampCache::singleton()->clear('user');
return $success;
}
示例2: update
/**
* Update the image data in the database.
*
* @param array $p_columns
* @param boolean $p_commit
* @param boolean $p_isSql
* @return boolean
*/
public function update($p_columns = null, $p_commit = true, $p_isSql = false)
{
$success = parent::update($p_columns, $p_commit, $p_isSql);
if ($success) {
if (function_exists("camp_load_translation_strings")) {
camp_load_translation_strings("api");
}
$logtext = getGS('Changed properties for image "$1" ($2)', $this->m_data['Description'], $this->m_data['Id']);
Log::Message($logtext, null, 43);
}
return $success;
} // fn update
示例3: update
/**
* Update the language.
*
* @param array $p_values
* @param boolean $p_commit
* @param boolean $p_isSql
* @return boolean
*/
public function update($p_values = null, $p_commit = true, $p_isSql = false)
{
$success = parent::update($p_values, $p_commit, $p_isSql);
if (!$success) {
return false;
}
CampCache::singleton()->clear('user');
if (function_exists("camp_load_translation_strings")) {
camp_load_translation_strings("api");
}
$logtext = getGS('Language "$1" ($2) modified', $this->m_data['Name'], $this->m_data['OrigName']);
Log::Message($logtext, null, 103);
return $success;
} // fn update
示例4: update
/**
* Update the specified columns in the publication.
*
* A wrapper around the DatabaseObject::update(),
* but this function logs a message after the update is complete
* and notifies the Parser about the change.
*
* @param array $p_columns
* @param boolean $p_commit
* @param boolean $p_isSql
* @return boolean
*/
public function update($p_columns = null, $p_commit = true, $p_isSql = false)
{
$updated = parent::update($p_columns, $p_commit, $p_isSql);
return $updated;
}
示例5: update
/**
* Update data
* @param array $p_columns
* @return bool
*/
public function update($p_columns = NULL)
{
// encode settings
if (!empty($p_columns['settings'])) {
$p_columns['settings'] = json_encode($p_columns['settings']);
}
parent::update($p_columns);
return TRUE;
}
示例6: update_no_password
public function update_no_password()
{
$value = self::$db_fields;
self::$db_fields = self::$db_fields_no_password;
parent::update();
self::$db_fields = $value;
}
示例7: update
public function update()
{
parent::update();
}
示例8: update
public function update()
{
$this->password_encrypt();
parent::update();
}