Example #1
0
 private function getCurrentMeta(File $file)
 {
     $currentMeta = array();
     foreach ($file->getDateMeta() as $meta) {
         $currentMeta[] = $meta;
     }
     foreach ($file->getStringMeta() as $meta) {
         $currentMeta[] = $meta;
     }
     return $currentMeta;
 }