本文整理汇总了PHP中Base_model::remove方法的典型用法代码示例。如果您正苦于以下问题:PHP Base_model::remove方法的具体用法?PHP Base_model::remove怎么用?PHP Base_model::remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Base_model
的用法示例。
在下文中一共展示了Base_model::remove方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: remove
public function remove($id)
{
$this->load->model('Ad_model', 'ad');
$this->ad->rm_by_position($id);
$result = parent::remove($id);
return $result;
}
示例2: remove
public function remove($id)
{
$result = parent::remove($id);
if ($result) {
$this->load->model('admin_log_model', 'admin_log');
foreach ($id as $_id) {
$this->admin_log->clear($_id);
}
return TRUE;
} else {
return FALSE;
}
}
示例3: remove
public function remove($id)
{
$rows = $this->search(array('ids' => $id));
if (empty($rows)) {
return FALSE;
}
foreach ($rows as $row) {
if (($row['media_type'] == 'img' || $row['media_type'] == 'flash') && !empty($row['content'])) {
$ad_file = APPPATH . "../data/{$row['content']}";
file_exists($ad_file) && unlink($ad_file);
}
}
return parent::remove($id);
}
示例4: remove
public function remove($id)
{
$rows = $this->db->where_in('id', $id)->get($this->table)->result_array();
if (empty($rows)) {
return FALSE;
}
foreach ($rows as $row) {
if (!empty($row['logo'])) {
$link_file = APPPATH . "../data/{$row['logo']}";
file_exists($link_file) && unlink($link_file);
}
}
return parent::remove($id);
}
示例5: remove
public function remove($id)
{
$course = parent::get(array('id' => $id));
$this->db->query('update user set god_course_count = god_course_count - 1 where id = ' . $course['god']);
parent::remove($id);
}
示例6: remove
public function remove($id)
{
$result = parent::remove($id);
return $result;
}
示例7: remove
public function remove($id, $pot = '')
{
$this->switching($this->_idx_table, $pot);
return parent::remove($id);
}