fix ide warnings

This commit is contained in:
Ralf Becker 2014-01-28 10:08:43 +00:00
parent 0c2f0fdcfa
commit effe2120aa

View File

@ -18,11 +18,12 @@ class infolog_hooks
/** /**
* For which groups should no group acl be used: infolog group owners * For which groups should no group acl be used: infolog group owners
* *
* @param string|array $data * @param array|string $location location and other parameters (not used)
* @return boolean|array true, false or array with group-account_id's * @return boolean|array true, false or array with group-account_id's
*/ */
static function not_enum_group_acls($data) static function not_enum_group_acls($location)
{ {
unset($location); // not used, but part of hook signature
$config = config::read('infolog'); $config = config::read('infolog');
return $config['group_owners']; return $config['group_owners'];
@ -31,15 +32,17 @@ class infolog_hooks
/** /**
* Hook called by link-class to include infolog in the appregistry of the linkage * Hook called by link-class to include infolog in the appregistry of the linkage
* *
* @param array/string $location location and other parameters (not used) * @param array|string $location location and other parameters (not used)
* @return array with method-names * @return array with method-names
*/ */
static function search_link($location) static function search_link($location)
{ {
unset($location); // not used, but part of hook signature
// register our not_enum_group_acls hook, if not already registered // register our not_enum_group_acls hook, if not already registered
// can be removed after next infolog version update after 1.6 // can be removed after next infolog version update after 1.6
if ($GLOBALS['egw']->hooks->single('not_enum_group_acls',$acl_app) === false) if ($GLOBALS['egw']->hooks->single('not_enum_group_acls', 'infolog') === false)
{ {
$setup_info = array();
include(EGW_INCLUDE_ROOT.'/infolog/setup/setup.inc.php'); include(EGW_INCLUDE_ROOT.'/infolog/setup/setup.inc.php');
$GLOBALS['egw']->hooks->register_hooks('infolog',$setup_info['infolog']['hooks']); $GLOBALS['egw']->hooks->register_hooks('infolog',$setup_info['infolog']['hooks']);
unset($setup_info); unset($setup_info);
@ -420,10 +423,11 @@ class infolog_hooks
} }
catch (Exception $e) catch (Exception $e)
{ {
unset($e);
// permission error // permission error
continue; continue;
} }
if ($title = $definition->get_title()) if (($title = $definition->get_title()))
{ {
$options[$title] = $title; $options[$title] = $title;
} }
@ -534,6 +538,7 @@ class infolog_hooks
*/ */
public static function acl_rights($params) public static function acl_rights($params)
{ {
unset($params); // not used, but default function signature for hooks
return array( return array(
acl::READ => 'read', acl::READ => 'read',
acl::ADD => 'add', acl::ADD => 'add',
@ -546,11 +551,12 @@ class infolog_hooks
/** /**
* Hook to tell framework we use standard categories method * Hook to tell framework we use standard categories method
* *
* @param string|array $data hook-data or location * @param array|string $location location and other parameters (not used)
* @return boolean * @return boolean
*/ */
public static function categories($data) public static function categories($location)
{ {
unset($location); // not used, but part of hook signature
return true; return true;
} }
} }