1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-02 12:48:26 +02:00

Set return values for e107::library().

This commit is contained in:
Lóna Lore
2016-02-12 10:26:36 +01:00
parent 203b0779e2
commit e4dd23d114

View File

@@ -1657,8 +1657,16 @@ class e107
/** /**
* Library Common Public Function. * Library Common Public Function.
* *
* @param string $action detect|load * @param string $action
* - 'detect': Tries to detect a library and its installed version.
* - 'load': Loads a library.
* @param string $library * @param string $library
* The name of the library to detect/load.
*
* @return array|boolean
* - In case of 'detect': An associative array of the library information.
* - In case of 'load': An associative array containing registered information for the library specified by $name,
* or FALSE if the library $name is not registered.
*/ */
public static function library($action, $library) public static function library($action, $library)
{ {
@@ -1667,11 +1675,11 @@ class e107
switch ($action) switch ($action)
{ {
case 'detect': case 'detect':
$libraryHandler->libraryDetect($library); return $libraryHandler->libraryDetect($library);
break; break;
case 'load': case 'load':
$libraryHandler->libraryLoad($library); return $libraryHandler->libraryLoad($library);
break; break;
} }
} }