Esempio n. 1
0
 protected function blockTable($line, array $block = null)
 {
     $table = parent::blockTable($line, $block);
     if (null !== $table) {
         $table['element']['attributes']['class'] = 'table table-striped';
     }
     return $table;
 }
Esempio n. 2
0
 protected function blockTable($Line, array $Block = null)
 {
     $Block = parent::blockTable($Line, $Block);
     if ($Block) {
         $Block['element']['attributes'] = array('class' => 'table table-striped');
         return $Block;
     }
 }