Example #1
0
 /**
  * Get the type => name mapping array
  * @return array
  */
 function &getTypeNameMap()
 {
     static $map = array();
     $parent = parent::getTypeNameMap();
     $map = array_merge($map, $parent);
     return $map;
 }
 /**
  * Get the type => name mapping array
  * @return array
  */
 function &getTypeNameMap()
 {
     static $map = array(LIBRARY_FILE_TYPE_CONTRACT => 'contacts');
     $parent = parent::getTypeNameMap();
     $map = array_merge($map, $parent);
     return $map;
 }
Example #3
0
 /**
  * Constructor
  * @param $contextId int
  */
 function LibraryFileManager($contextId)
 {
     parent::PKPLibraryFileManager($contextId);
 }
Example #4
0
 /**
  * Constructor
  * @param $contextId int
  */
 function __construct($contextId)
 {
     parent::__construct($contextId);
 }