You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Base class for all modules. Implements routine methods required by all modules.
25
24
*
@@ -75,11 +74,12 @@ public function __construct( Visualizer_Plugin $plugin ) {
75
74
* @access protected
76
75
* @param string $tag The name of the action to which the $method is hooked.
77
76
* @param string $method The name of the method to be called.
78
-
* @param int $priority optional. Used to specify the order in which the functions associated with a particular action are executed (default: 10). Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action.
79
-
* @param int $accepted_args optional. The number of arguments the function accept (default 1).
77
+
* @param bool $methodClass The root of the method.
78
+
* @param int $priority optional. Used to specify the order in which the functions associated with a particular action are executed (default: 10). Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action.
79
+
* @param int $accepted_args optional. The number of arguments the function accept (default 1).
* @param string $tag The name of the AJAX action to which the $method is hooked.
94
-
* @param string $method Optional. The name of the method to be called. If the name of the method is not provided, tag name will be used as method name.
93
+
* @param string $tag The name of the AJAX action to which the $method is hooked.
94
+
* @param string $method Optional. The name of the method to be called. If the name of the method is not provided, tag name will be used as method name.
95
+
* @param bool $methodClass The root of the method.
95
96
* @param boolean $private Optional. Determines if we should register hook for logged in users.
96
97
* @param boolean $public Optional. Determines if we should register hook for not logged in users.
* @param string $tag The name of the filter to hook the $method to.
119
-
* @param type $method The name of the method to be called when the filter is applied.
120
-
* @param int $priority optional. Used to specify the order in which the functions associated with a particular action are executed (default: 10). Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action.
121
-
* @param int $accepted_args optional. The number of arguments the function accept (default 1).
120
+
* @param type $method The name of the method to be called when the filter is applied.
121
+
* @param int $priority optional. Used to specify the order in which the functions associated with a particular action are executed (default: 10). Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action.
122
+
* @param int $accepted_args optional. The number of arguments the function accept (default 1).
0 commit comments