PATH:
home
/
letacommog
/
aacote
/
wp-content
/
plugins
/
wp-job-manager
/
lib
/
wpjm_rest
<?php /** * WP_Job_Manager_REST_Events: Simple event bus * * @package Mixtape */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Class WP_Job_Manager_REST_Events * * Simple event bus * * @package Mixtape */ class WP_Job_Manager_REST_Events { /** * Events * * @var array */ private $events = array(); /** * Add Filter * * @param string $event Event. * @param callable $func Func. * @param int $priority Priority. * @param int $accepted_args Accepted Args. * * @return $this */ public function add_filter( $event, $func, $priority = 10, $accepted_args = 1 ) { WP_Job_Manager_REST_Expect::that( is_callable( $func ), sprintf( '$func is not callable' ) ); if ( ! isset( $this->events[ $event ] ) ) { $this->events[ $event ] = new WP_Hook(); } /** * The hook. * * @var WP_Hook $hook */ $hook = $this->events[ $event ]; $hook->add_filter( $event, $func, $priority, $accepted_args ); return $this; } /** * Add Action * * @param string $event Event. * @param callable $func Func. * @param int $priority Priority. * @param int $accepted_args Accepted Args. * * @return $this */ public function add_action( $event, $func, $priority = 10, $accepted_args = 1 ) { return $this->add_filter( $event, $func, $priority, $accepted_args ); } /** * Apply Filters * * @param string $event Event. * @param mixed $value Value. * * @return mixed */ public function apply_filters( $event, $value ) { $func_args = func_get_args(); if ( ! isset( $this->events[ $event ] ) ) { return $value; } /** * The hook. * * @var WP_Hook $hook */ $hook = $this->events[ $event ]; $func_args = array_slice( $func_args, 1 ); return $hook->apply_filters( $value, $func_args ); } /** * Do Action * * @param string $event Event. * * @return mixed */ public function do_action( $event ) { $func_args = func_get_args(); if ( ! isset( $this->events[ $event ] ) ) { return; } /** * The hook. * * @var WP_Hook $hook */ $hook = $this->events[ $event ]; array_shift( $func_args ); $hook->do_action( $func_args ); } /** * Remove * * @param string $event The Event. * @param bool|callable $function_to_remove The callable. * @param int $priority Priority. * @return $this */ public function remove( $event, $function_to_remove = false, $priority = 10 ) { if ( isset( $this->events[ $event ] ) ) { if ( false === $function_to_remove ) { /** * The hook. * * @var WP_Hook $hook */ $hook = $this->events[ $event ]; $hook->remove_all_filters(); unset( $this->events[ $event ] ); } /** * The hook. * * @var WP_Hook $hook */ $hook = $this->events[ $event ]; if ( $hook->has_filter( $event, $function_to_remove ) ) { $hook->remove_filter( $event, $function_to_remove, $priority ); } } return $this; } }
[+]
..
[+]
data
[+]
field
[+]
permissions
[-] class-wp-job-manager-rest-model.php
[edit]
[-] class-wp-job-manager-rest-exception.php
[edit]
[-] class-wp-job-manager-rest-environment.php
[edit]
[-] class-wp-job-manager-rest-events.php
[edit]
[+]
type
[-] class-wp-job-manager-rest-classloader.php
[edit]
[-] class-wp-job-manager-rest-type.php
[edit]
[+]
controller
[+]
model
[-] class-wp-job-manager-rest-controller.php
[edit]
[-] class-wp-job-manager-rest-bootstrap.php
[edit]
[-] class-wp-job-manager-rest-expect.php
[edit]
[+]
interfaces