예제 #1
0
function ee_check_for_export()
{
    if (isset($_REQUEST['export'])) {
        if (file_exists(EVENT_ESPRESSO_PLUGINFULLPATH . 'includes/functions/export.php')) {
            require_once EVENT_ESPRESSO_PLUGINFULLPATH . 'includes/functions/export.php';
            espresso_export_stuff();
        }
    }
}
예제 #2
0
파일: espresso.php 프로젝트: sriram911/pls
function ee_check_for_export()
{
    do_action('action_hook_espresso_log', __FILE__, __FUNCTION__, '');
    if (isset($_REQUEST['export'])) {
        if (file_exists(EVENT_ESPRESSO_PLUGINFULLPATH . 'includes/functions/export.php')) {
            require_once EVENT_ESPRESSO_PLUGINFULLPATH . 'includes/functions/export.php';
            espresso_export_stuff();
        }
    }
}