44 * Register all actions and filters for the plugin
55 *
66 * @link https://www.crowdhandler.com/
7- * @since 1.0 .0
7+ * @since 0.1 .0
88 *
99 * @package Crowdhandler
1010 * @subpackage Crowdhandler/includes
@@ -27,7 +27,7 @@ class Crowdhandler_Loader
2727 /**
2828 * The array of actions registered with WordPress.
2929 *
30- * @since 1.0 .0
30+ * @since 0.1 .0
3131 * @access protected
3232 * @var array $actions The actions registered with WordPress to fire when the plugin loads.
3333 */
@@ -36,7 +36,7 @@ class Crowdhandler_Loader
3636 /**
3737 * The array of filters registered with WordPress.
3838 *
39- * @since 1.0 .0
39+ * @since 0.1 .0
4040 * @access protected
4141 * @var array $filters The filters registered with WordPress to fire when the plugin loads.
4242 */
@@ -45,7 +45,7 @@ class Crowdhandler_Loader
4545 /**
4646 * Initialize the collections used to maintain the actions and filters.
4747 *
48- * @since 1.0 .0
48+ * @since 0.1 .0
4949 */
5050 public function __construct ()
5151 {
@@ -62,7 +62,7 @@ public function __construct()
6262 * @param int $priority Optional. The priority at which the function should be fired. Default is 10.
6363 * @param int $accepted_args Optional. The number of arguments that should be passed to the $callback. Default is 1.
6464 *
65- * @since 1.0 .0
65+ * @since 0.1 .0
6666 */
6767 public function add_action ($ hook , $ component , $ callback , $ priority = 10 , $ accepted_args = 1 )
6868 {
@@ -81,7 +81,7 @@ public function add_action($hook, $component, $callback, $priority = 10, $accept
8181 * @param int $accepted_args The number of arguments that should be passed to the $callback.
8282 *
8383 * @return array The collection of actions and filters registered with WordPress.
84- * @since 1.0 .0
84+ * @since 0.1 .0
8585 * @access private
8686 */
8787 private function add ($ hooks , $ hook , $ component , $ callback , $ priority , $ accepted_args )
@@ -106,7 +106,7 @@ private function add($hooks, $hook, $component, $callback, $priority, $accepted_
106106 * @param int $priority Optional. The priority at which the function should be fired. Default is 10.
107107 * @param int $accepted_args Optional. The number of arguments that should be passed to the $callback. Default is 1
108108 *
109- * @since 1.0 .0
109+ * @since 0.1 .0
110110 */
111111 public function add_filter ($ hook , $ component , $ callback , $ priority = 10 , $ accepted_args = 1 )
112112 {
@@ -116,7 +116,7 @@ public function add_filter($hook, $component, $callback, $priority = 10, $accept
116116 /**
117117 * Register the filters and actions with WordPress.
118118 *
119- * @since 1.0 .0
119+ * @since 0.1 .0
120120 */
121121 public function run ()
122122 {
0 commit comments