Dotclear


Ignore:
Timestamp:
10/26/13 07:36:50 (12 years ago)
Author:
franck <carnet.franck.paul@…>
Branch:
2.6
Message:

Reduce checkbox cell width to it's minimum on action's list, fixes #1819

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inc/admin/actions/class.dcactioncomments.php

    r2256 r2493  
    2929          dcDefaultCommentActions::adminCommentsActionsPage($this->core,$this); 
    3030     } 
    31       
     31 
    3232     public function beginPage($breadcrumb='',$head='') { 
    3333          if ($this->in_plugin) { 
     
    4343                    $head, 
    4444                    $breadcrumb 
    45                );    
     45               ); 
    4646 
    4747          } 
    4848          echo '<p><a class="back" href="'.$this->getRedirection(true).'">'.__('Back to comments list').'</a></p>'; 
    4949     } 
    50       
     50 
    5151     public function endPage() { 
    5252          dcPage::close(); 
     
    6464          $this->endPage(); 
    6565     } 
    66       
     66 
    6767     /** 
    6868     * getcheckboxes -returns html code for selected entries 
     
    7474     */ 
    7575     public function getCheckboxes() { 
    76           $ret =  
     76          $ret = 
    7777               '<table class="posts-list"><tr>'. 
    7878               '<th colspan="2">'.__('Author').'</th><th>'.__('Title').'</th>'. 
    7979               '</tr>'; 
    8080          foreach ($this->entries as $id=>$title) { 
    81                $ret .=  
    82                     '<tr><td>'. 
     81               $ret .= 
     82                    '<tr><td class="minimal">'. 
    8383                    form::checkbox(array($this->field_entries.'[]'),$id,true,'','').'</td>'. 
    8484                    '<td>'.   $title['author'].'</td><td>'.$title['title'].'</td></tr>'; 
     
    9191          if (!empty($from['comments'])) { 
    9292               $comments = $from['comments']; 
    93                 
     93 
    9494               foreach ($comments as $k => $v) { 
    9595                    $comments[$k] = (integer) $v; 
    9696               } 
    97                 
     97 
    9898               $params['sql'] = 'AND C.comment_id IN('.implode(',',$comments).') '; 
    99                 
     99 
    100100               if (!isset($from['full_content']) || empty($from['full_content'])) { 
    101101                    $params['no_content'] = true; 
    102102               } 
    103                 
     103 
    104104               $co = $this->core->blog->getComments($params); 
    105105               while ($co->fetch())     { 
     
    116116} 
    117117 
    118 class dcDefaultCommentActions  
     118class dcDefaultCommentActions 
    119119{ 
    120120     public static function adminCommentsActionsPage($core, dcCommentsActionsPage $ap) { 
     
    127127               $ap->addAction(array(__('Mark as junk') => 'junk'), $action); 
    128128          } 
    129       
     129 
    130130          if ($core->auth->check('delete,contentadmin',$core->blog->id)) 
    131131          { 
     
    147147               default : $status = 1; break; 
    148148          } 
    149            
     149 
    150150          $core->blog->updCommentsStatus($co_ids,$status); 
    151151 
     
    163163          { 
    164164               # --BEHAVIOR-- adminBeforeCommentDelete 
    165                $core->callBehavior('adminBeforeCommentDelete',$comment_id);                     
     165               $core->callBehavior('adminBeforeCommentDelete',$comment_id); 
    166166          } 
    167            
     167 
    168168          # --BEHAVIOR-- adminBeforeCommentsDelete 
    169169          $core->callBehavior('adminBeforeCommentsDelete',$co_ids); 
    170            
     170 
    171171          $core->blog->delComments($co_ids); 
    172172          dcPage::addSuccessNotice(__('Selected comments have been successfully deleted.')); 
Note: See TracChangeset for help on using the changeset viewer.

Sites map