X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FDirectory%2FDirectoryPlugin.php;h=e061b89e467ea61215af4b70a4eeca880db0de76;hb=ac44695c44056cdcfc33ff88e1943bbb262a356b;hp=0ff2ea76bf7c240eb77a037b402b37ca68338613;hpb=09c90edbb5c6e396ee03a558e4fab32cfbf1bb3e;p=quix0rs-gnu-social.git diff --git a/plugins/Directory/DirectoryPlugin.php b/plugins/Directory/DirectoryPlugin.php index 0ff2ea76bf..e061b89e46 100644 --- a/plugins/Directory/DirectoryPlugin.php +++ b/plugins/Directory/DirectoryPlugin.php @@ -44,6 +44,8 @@ if (!defined('STATUSNET')) { */ class DirectoryPlugin extends Plugin { + private $dir = null; + /** * Initializer for this plugin * @@ -67,49 +69,117 @@ class DirectoryPlugin extends Plugin } /** - * Load related modules when needed + * Map URLs to actions * - * @param string $cls Name of the class to be loaded + * @param Net_URL_Mapper $m path-to-action mapper * * @return boolean hook value; true means continue processing, * false means stop. */ - function onAutoload($cls) + function onRouterInitialized($m) { - $dir = dirname(__FILE__); - - // common_debug("class = $cls"); - - switch ($cls) - { - case 'UserdirectoryAction': - include_once $dir - . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; - return false; - case 'AlphaNav': - include_once $dir - . '/lib/' . strtolower($cls) . '.php'; - return false; - default: + + $m->connect( + 'directory/users/:filter', + array('action' => 'userdirectory'), + array('filter' => '[0-9a-zA-Z]|(0-9)') + ); + + $m->connect( + 'directory/users', + array('action' => 'userdirectory') + ); + + $m->connect( + 'groups/:filter', + array('action' => 'groupdirectory'), + array('filter' => '[0-9a-zA-Z]|(0-9)') + ); + + $m->connect( + 'groups', + array('action' => 'groupdirectory') + ); + + return true; + } + + /** + * Hijack the routing (URL -> Action) for the normal directory page + * and substitute our group directory action + * + * @param string $path path to connect + * @param array $defaults path defaults + * @param array $rules path rules + * @param array $result unused + * + * @return boolean hook return + */ + function onStartConnectPath(&$path, &$defaults, &$rules, &$result) + { + if (in_array($path, array('group', 'group/', 'groups', 'groups/'))) { + $defaults['action'] = 'groupdirectory'; return true; } + return true; + } + + // The following three function are to replace the existing groups + // list page with the directory plugin's group directory page + + /** + * Hijack the mapping (Action -> URL) and return the URL to our + * group directory page instead of the normal groups page + * + * @param Action $action action to find a path for + * @param array $params parameters to pass to the action + * @param string $fragment any url fragement + * @param boolean $addSession whether to add session variable + * @param string $url resulting URL to local resource + * + * @return string the local URL + */ + function onEndLocalURL(&$action, &$params, &$fragment, &$addSession, &$url) { + if (in_array($action, array('group', 'group/', 'groups', 'groups/'))) { + $url = common_local_url('groupdirectory'); + } + return true; } /** - * Map URLs to actions + * Link in a styelsheet for the onboarding actions * - * @param Net_URL_Mapper $m path-to-action mapper + * @param Action $action Action being shown * - * @return boolean hook value; true means continue processing, - * false means stop. + * @return boolean hook flag */ - function onRouterInitialized($m) + public function onEndShowStylesheets(Action $action) { - $m->connect( - 'main/directory', - array('action' => 'userdirectory') - ); + if (in_array( + $action->trimmed('action'), + array('userdirectory', 'groupdirectory')) + ) { + $action->cssLink($this->path('css/directory.css')); + } + + return true; + } + /** + * Fool the public nav into thinking it's on the regular + * group page when it's actually on our injected group + * directory page. This way "Groups" gets hilighted when + * when we're on the groups directory page. + * + * @param type $action the current action + * + * @return boolean hook flag + */ + function onStartPublicGroupNav($action) + { + if ($action->trimmed('action') == 'groupdirectory') { + $action->actionName = 'groups'; + } return true; } @@ -132,8 +202,10 @@ class DirectoryPlugin extends Plugin $nav->out->menuItem( common_local_url('userdirectory'), - _('Directory'), - _('User Directory'), + // TRANS: Menu item text for user directory. + _m('MENU','Directory'), + // TRANS: Menu item title for user directory. + _m('User Directory.'), $actionName == 'userdirectory', 'nav_directory' ); @@ -148,9 +220,10 @@ class DirectoryPlugin extends Plugin { $versions[] = array( 'name' => 'Directory', - 'version' => STATUSNET_VERSION, + 'version' => GNUSOCIAL_VERSION, 'author' => 'Zach Copley', 'homepage' => 'http://status.net/wiki/Plugin:Directory', + // TRANS: Plugin description. 'rawdescription' => _m('Add a user directory.') );