示例#1
0
文件: All.php 项目: chris27tina/TODO
 public static function getLocation($record)
 {
     //not called/used for stories
     if (All::hasEditRight($record) && empty($record->location)) {
         return All::getNamedEditLink($record, '');
         //Elysium or Oblivion...
     } elseif (empty($record->location)) {
         return '';
         //Elysium
     } else {
         return $record->location;
     }
 }