Exemplo n.º 1
0
 /**
  * Get the type => suffix mapping array
  * @return array
  */
 function &getTypeSuffixMap()
 {
     static $map = array(LIBRARY_FILE_TYPE_CONTRACT => 'CON');
     $parent = parent::getTypeSuffixMap();
     $map = array_merge($map, $parent);
     return $map;
 }
Exemplo n.º 2
0
 /**
  * Get the type => suffix mapping array
  * @return array
  */
 function &getTypeSuffixMap()
 {
     static $map = array();
     $parent = parent::getTypeSuffixMap();
     $map = array_merge($map, $parent);
     return $map;
 }