HEX
Server: Apache
System: Linux uws7-179.cafe24.com 3.10.0-1160.119.1p.el7.x86_64 #1 SMP Thu Sep 11 14:15:01 KST 2025 x86_64
User: medikors (1589)
PHP: 7.3.1p1
Disabled: mysql_pconnect
Upload Files
File: /medikors/www/wp-content/plugins/raven/includes/modules/posts/classes/action-base.php
<?php
/**
 * Add Action Base.
 *
 * @package Raven
 * @since 1.0.0
 */

namespace Raven\Modules\Posts\Classes;

defined( 'ABSPATH' ) || die();

/**
 * Action Base.
 *
 * An abstract class for registering action.
 *
 * @since 1.0.0
 * @abstract
 */
abstract class Action_Base {

	/**
	 * Holds the Skin class instance.
	 *
	 * Please see: Skin_Base class.
	 *
	 * @var object
	 */
	protected $skin = null;

	/**
	 * Detects active state.
	 *
	 * Use to detect the state of this class.
	 *
	 * @since 1.0.0
	 * @access public
	 */
	public static function is_active() {
		return true;
	}

	/**
	 * Action base constructor.
	 *
	 * Initializing the action base class by hooking in widgets controls.
	 *
	 * @since 1.0.0
	 * @access public
	 */
	public function __construct() {
		$this->register_action_hooks();
	}

	/**
	 * Run action hooks.
	 *
	 * Use to register action hooks.
	 *
	 * @since 1.0.0
	 * @access protected
	 */
	protected function register_action_hooks() {}
}