File "class-acf-admin-tool.php"
Full path: /home/kosmetik/public_html/wp-content/plugins/advanced-custom-fields/includes/admin/tools/class-acf-admin-tool.php
File
size: 816 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
if (!defined('ABSPATH')) {
exit;
}
if (!class_exists('ACF_Admin_Tool')) {
class ACF_Admin_Tool
{
var $name = '';
var $title = '';
function get_name()
{
return $this->name;
}
function get_title()
{
return $this->title;
}
function get_url()
{
return acf_get_admin_tool_url($this->name);
}
function is_active()
{
return acf_maybe_get_GET('tool') === $this->name;
}
function __construct()
{
$this->initialize();
}
function initialize()
{
}
function load()
{
}
function html()
{
}
function submit()
{
}
}
}