1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120:
<?php
namespace VSP\Core\Abstracts;
use ReflectionClass;
use VSP\Base;
use WPOnion\Traits\Class_Options;
use WPOnion\Traits\Hooks;
defined( 'ABSPATH' ) || exit;
abstract class Addon extends Base {
use Class_Options;
use Hooks;
private $addon_file = '';
protected $settings_priority = 20;
public function __construct() {
$slug = $this->plugin()->slug( 'hook' );
$this->add_action( $slug . '/settings/fields', 'settings', $this->settings_priority );
$this->add_action( $slug . '/init', 'init' );
}
abstract protected function init();
protected function addon_file() {
if ( empty( $this->addon_file ) ) {
$reflector = new ReflectionClass( static::class );
$this->addon_file = $reflector->getFileName();
}
return $this->addon_file;
}
public function addon_url( $ex_path = '/', $addon_file = false ) {
$file = ( false !== $addon_file ) ? $addon_file : $this->addon_file();
return untrailingslashit( plugins_url( $ex_path, $file ) );
}
public function addon_path( $ex_path = '', $addon_file = false ) {
$file = ( false !== $addon_file ) ? $addon_file : $this->addon_file();
$path = untrailingslashit( plugin_dir_path( $file ) );
return ( empty( $ex_path ) ) ? $path : $path . '/' . $ex_path;
}
abstract public function settings( $builder );
public function do_action() {
$args = func_get_args();
$args[0] = 'addon/' . $args[0];
return parent::do_action( ...$args );
}
public function apply_filter() {
$args = func_get_args();
$args[0] = 'addon/' . $args[0];
return parent::apply_filter( ...$args );
}
}