예제 #1
0
 public function GetValues($alias, $pkVal = null, $stringify = FALSE)
 {
     if ($alias !== 'value') {
         return parent::GetValues($alias, $pkVal, $stringify);
     }
     if (!$pkVal) {
         return null;
     }
     if (!isset(modOpts::$types[$pkVal])) {
         return null;
     }
     return modOpts::$types[$pkVal][1];
 }