文件操作 - class-loader.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/steemteam/public_html/wp-content/plugins/lordicon/includes/class-loader.php
编辑文件内容
<?php namespace Lordicon; if (!defined('ABSPATH') ) { exit; } class Loader { protected $actions; protected $filters; protected $shortcodes; public function __construct() { $this->actions = array(); $this->filters = array(); $this->shortcodes = array(); } public function add_action( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) { $this->actions[] = array( 'hook' => $hook, 'component' => $component, 'callback' => $callback, 'priority' => $priority, 'accepted_args' => $accepted_args ); } public function add_filter( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) { $this->filters[] = array( 'hook' => $hook, 'component' => $component, 'callback' => $callback, 'priority' => $priority, 'accepted_args' => $accepted_args ); } public function add_shortcode( $tag, $component, $callback ) { $this->shortcodes[] = array( 'tag' => $tag, 'component' => $component, 'callback' => $callback, ); } 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'] ); } foreach ($this->shortcodes as $shortcode) { add_shortcode( $shortcode['tag'], array( $shortcode['component'], $shortcode['callback'] ) ); } } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件