Exemplo n.º 1
0
 public function format(array $row)
 {
     if (isset($row[$this->id]) && strlen($row[$this->id]) > 0) {
         $file = new \Meta\File($row[$this->id]);
         $label = $file->name;
         if ($file->exists()) {
             $label .= ' (' . $file->prettySize() . ')';
         }
         return '<span class="glyphicon glyphicon-file"> </span>' . anchor($file->getDownloadPath(), $label);
     }
     return null;
 }