mirror of
https://ghproxy.net/https://github.com/elementor/wp2static-addon-github.git
synced 2025-10-04 05:56:40 +08:00
43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<?php
|
|
|
|
class Wp2static_Addon_GitHub_Loader {
|
|
|
|
protected $actions;
|
|
protected $filters;
|
|
|
|
public function __construct() {
|
|
$this->actions = array();
|
|
$this->filters = array();
|
|
|
|
}
|
|
|
|
public function add_action( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) {
|
|
$this->actions = $this->add( $this->actions, $hook, $component, $callback, $priority, $accepted_args );
|
|
}
|
|
|
|
public function add_filter( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) {
|
|
$this->filters = $this->add( $this->filters, $hook, $component, $callback, $priority, $accepted_args );
|
|
}
|
|
|
|
private function add( $hooks, $hook, $component, $callback, $priority, $accepted_args ) {
|
|
$hooks[] = array(
|
|
'hook' => $hook,
|
|
'component' => $component,
|
|
'callback' => $callback,
|
|
'priority' => $priority,
|
|
'accepted_args' => $accepted_args
|
|
);
|
|
|
|
return $hooks;
|
|
}
|
|
|
|
public function run() {
|
|
foreach ( $this->filters as $hook ) {
|
|
add_filter( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] );
|
|
}
|
|
|
|
foreach ( $this->actions as $hook ) {
|
|
add_action( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] );
|
|
}
|
|
}
|
|
}
|