コード例 #1
0
 /**
  * Info
  *  (array)ids
  */
 public function infoAction()
 {
     $this->content = [];
     foreach ($this->getParam('ids', []) as $id) {
         $file = App_Model_File::fetchOne(['user' => (string) $this->user->id, 'identity' => $id]);
         $this->content[] = App_Map_File::execute($file, 'search');
     }
 }