コード例 #1
0
ファイル: widgets_page_delete.php プロジェクト: asphix/icms2
 public function run($id = false)
 {
     if (!$id) {
         cmsCore::error404();
     }
     $widgets_model = cmsCore::getModel('widgets');
     $widgets_model->deletePage($id);
     cmsUser::unsetCookie('widgets_tree_path');
     $this->redirectBack();
 }
コード例 #2
0
 public function run($profile, $id = null)
 {
     if (!$id) {
         cmsCore::error404();
     }
     // проверяем наличие доступа
     if ($profile['id'] != $this->cms_user->id && !$this->cms_user->is_admin) {
         cmsCore::error404();
     }
     $ses = $this->model->getItemById('{users}_auth_tokens', $id);
     if (!$ses) {
         cmsCore::error404();
     }
     $this->model->deleteAuthToken($ses['auth_token']);
     if ($ses['user_id'] == $this->cms_user->id) {
         cmsUser::unsetCookie('auth');
     }
     cmsUser::addSessionMessage(LANG_USERS_SESSIONS_DELETE, 'success');
     $this->redirectToAction($profile['id'], array('edit', 'sessions'));
 }