• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

XenForo_CodeEvent::fire Locations

calorie

Active member
XenForo_CodeEvent::fire Locations in XF 1.0.0 Beta 1
Code:
> grep -rn XenForo_CodeEvent::fire\( * | more

Location:                                  Line Number:    Code:

library/XenForo/Application.php:           319:            XenForo_CodeEvent::fire('load_class_' . $type, array($class, &$extend));
library/XenForo/Controller.php:            377:            XenForo_CodeEvent::fire('controller_pre_dispatch', array($this, $action));
library/XenForo/Dependencies/Abstract.php: 178:            XenForo_CodeEvent::fire('init_dependencies', array($this, $data));
library/XenForo/Dependencies/Admin.php:    181:            XenForo_CodeEvent::fire('container_admin_params', array(&$params, $this));
library/XenForo/Dependencies/Public.php:   274:            XenForo_CodeEvent::fire('container_public_params', array(&$params, $this));
library/XenForo/Dependencies/Public.php:   371:            XenForo_CodeEvent::fire('navigation_tabs', array(&$extraTabs, $selectedTabId));
library/XenForo/FrontController.php:       127:            XenForo_CodeEvent::fire('front_controller_pre_route', array($this));
library/XenForo/FrontController.php:       130:            XenForo_CodeEvent::fire('front_controller_pre_dispatch', array($this, &$routeMatch));
library/XenForo/FrontController.php:       152:            XenForo_CodeEvent::fire('front_controller_pre_view', array($this, &$controllerResponse, &$viewRenderer, &$containerParams));
library/XenForo/FrontController.php:       170:            XenForo_CodeEvent::fire('front_controller_post_view', array($this, &$content));
library/XenForo/Visitor.php:               399:            XenForo_CodeEvent::fire('visitor_setup', array(&self::$_instance));
 
Top Bottom