- Timestamp:
- 10/26/13 07:36:50 (12 years ago)
- Branch:
- 2.6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/admin/actions/class.dcactioncomments.php
r2256 r2493 29 29 dcDefaultCommentActions::adminCommentsActionsPage($this->core,$this); 30 30 } 31 31 32 32 public function beginPage($breadcrumb='',$head='') { 33 33 if ($this->in_plugin) { … … 43 43 $head, 44 44 $breadcrumb 45 ); 45 ); 46 46 47 47 } 48 48 echo '<p><a class="back" href="'.$this->getRedirection(true).'">'.__('Back to comments list').'</a></p>'; 49 49 } 50 50 51 51 public function endPage() { 52 52 dcPage::close(); … … 64 64 $this->endPage(); 65 65 } 66 66 67 67 /** 68 68 * getcheckboxes -returns html code for selected entries … … 74 74 */ 75 75 public function getCheckboxes() { 76 $ret = 76 $ret = 77 77 '<table class="posts-list"><tr>'. 78 78 '<th colspan="2">'.__('Author').'</th><th>'.__('Title').'</th>'. 79 79 '</tr>'; 80 80 foreach ($this->entries as $id=>$title) { 81 $ret .= 82 '<tr><td >'.81 $ret .= 82 '<tr><td class="minimal">'. 83 83 form::checkbox(array($this->field_entries.'[]'),$id,true,'','').'</td>'. 84 84 '<td>'. $title['author'].'</td><td>'.$title['title'].'</td></tr>'; … … 91 91 if (!empty($from['comments'])) { 92 92 $comments = $from['comments']; 93 93 94 94 foreach ($comments as $k => $v) { 95 95 $comments[$k] = (integer) $v; 96 96 } 97 97 98 98 $params['sql'] = 'AND C.comment_id IN('.implode(',',$comments).') '; 99 99 100 100 if (!isset($from['full_content']) || empty($from['full_content'])) { 101 101 $params['no_content'] = true; 102 102 } 103 103 104 104 $co = $this->core->blog->getComments($params); 105 105 while ($co->fetch()) { … … 116 116 } 117 117 118 class dcDefaultCommentActions 118 class dcDefaultCommentActions 119 119 { 120 120 public static function adminCommentsActionsPage($core, dcCommentsActionsPage $ap) { … … 127 127 $ap->addAction(array(__('Mark as junk') => 'junk'), $action); 128 128 } 129 129 130 130 if ($core->auth->check('delete,contentadmin',$core->blog->id)) 131 131 { … … 147 147 default : $status = 1; break; 148 148 } 149 149 150 150 $core->blog->updCommentsStatus($co_ids,$status); 151 151 … … 163 163 { 164 164 # --BEHAVIOR-- adminBeforeCommentDelete 165 $core->callBehavior('adminBeforeCommentDelete',$comment_id); 165 $core->callBehavior('adminBeforeCommentDelete',$comment_id); 166 166 } 167 167 168 168 # --BEHAVIOR-- adminBeforeCommentsDelete 169 169 $core->callBehavior('adminBeforeCommentsDelete',$co_ids); 170 170 171 171 $core->blog->delComments($co_ids); 172 172 dcPage::addSuccessNotice(__('Selected comments have been successfully deleted.'));
Note: See TracChangeset
for help on using the changeset viewer.