コード例 #1
0
ファイル: Parser.php プロジェクト: stof/Gitiki
 protected function blockTable($line, array $block = null)
 {
     $table = parent::blockTable($line, $block);
     if (null !== $table) {
         $table['element']['attributes']['class'] = 'table table-striped';
     }
     return $table;
 }
コード例 #2
0
ファイル: mycms.php プロジェクト: jodier/myCMS
 protected function blockTable($Line, array $Block = null)
 {
     $Block = parent::blockTable($Line, $Block);
     if ($Block) {
         $Block['element']['attributes'] = array('class' => 'table table-striped');
         return $Block;
     }
 }