本文整理汇总了PHP中Basic::mark_deleted方法的典型用法代码示例。如果您正苦于以下问题:PHP Basic::mark_deleted方法的具体用法?PHP Basic::mark_deleted怎么用?PHP Basic::mark_deleted使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Basic
的用法示例。
在下文中一共展示了Basic::mark_deleted方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: unset
function mark_deleted($id)
{
// Nuke the EAPM cache for this record
if (isset($_SESSION['EAPM'][$this->application])) {
unset($_SESSION['EAPM'][$this->application]);
}
return parent::mark_deleted($id);
}
示例2:
function mark_deleted($id)
{
$account = BeanFactory::getBean('xPhotobucketAccounts', $this->xphotobucketaccount_id);
$account->delete_media($this->image_url);
parent::mark_deleted($id);
}
示例3:
function mark_deleted($id)
{
$GLOBALS['db']->query("DELETE FROM xebaysellersurveys WHERE xebaysellersurveys.xebayuser_id ='{$this->id}'");
parent::mark_deleted($id);
}
示例4:
function mark_deleted($id)
{
$item = BeanFactory::getBean('xInventories');
if ($item->retrieve($this->xinventory_id) != null) {
if ($this->operation == 'in') {
$item->quantity -= $this->quantity;
if ($item->quantity < 0) {
$item->quantity = 0;
}
} else {
$item->quantity += $this->quantity;
}
$item->save();
}
parent::mark_deleted($id);
}