// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
plugins
/
easy-digital-downloads
/
includes
[ PARENT ]
EDIT :: actions.php
<?php /** * Front-end Actions * * @package EDD * @subpackage Functions * @copyright Copyright (c) 2015, Pippin Williamson * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.0.8.1 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /** * Hooks EDD actions, when present in the $_GET superglobal. Every edd_action * present in $_GET is called using WordPress's do_action function. These * functions are called on init. * * @since 1.0 * @return void */ function edd_get_actions() { if ( isset( $_GET['edd_action'] ) ) { do_action( 'edd_' . $_GET['edd_action'], $_GET ); } } add_action( 'init', 'edd_get_actions' ); /** * Hooks EDD actions, when present in the $_POST superglobal. Every edd_action * present in $_POST is called using WordPress's do_action function. These * functions are called on init. * * @since 1.0 * @return void */ function edd_post_actions() { if ( isset( $_POST['edd_action'] ) ) { do_action( 'edd_' . $_POST['edd_action'], $_POST ); } } add_action( 'init', 'edd_post_actions' );
SAVE
CANCEL