晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
Server : Apache System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64 User : rainic ( 1014) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/stando/public_html/wp-content/plugins/uwac/adminframework/ |
Upload File : |
<?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access pages directly.
/**
*
* Framework constants
*
* @since 1.0.0
* @version 1.0.0
*
*/
defined( 'CSSF_VERSION' ) or define( 'CSSF_VERSION', '2.0.1' );
defined( 'CSSF_OPTION' ) or define( 'CSSF_OPTION', 'cssf_ipidoadmin_settings' );
defined( 'CSSF_CUSTOMIZE' ) or define( 'CSSF_CUSTOMIZE', '_cssf_customize_options' );
/**
*
* Framework path finder
*
* @since 1.0.0
* @version 1.0.0
*
*/
if( ! function_exists( 'cssf_get_path_locate' ) ) {
function cssf_get_path_locate() {
$dirname = wp_normalize_path( dirname( __FILE__ ) );
$plugin_dir = wp_normalize_path( WP_PLUGIN_DIR );
$located_plugin = ( preg_match( '#'. $plugin_dir .'#', $dirname ) ) ? true : false;
$directory = ( $located_plugin ) ? $plugin_dir : get_template_directory();
$directory_uri = ( $located_plugin ) ? WP_PLUGIN_URL : get_template_directory_uri();
$basename = str_replace( wp_normalize_path( $directory ), '', $dirname );
$dir = $directory . $basename;
$uri = $directory_uri . $basename;
return apply_filters( 'cssf_get_path_locate', array(
'basename' => wp_normalize_path( $basename ),
'dir' => wp_normalize_path( $dir ),
'uri' => $uri
) );
}
}
/**
*
* Framework set paths
*
* @since 1.0.0
* @version 1.0.0
*
*
*/
$get_path = cssf_get_path_locate();
defined( 'CSSF_BASENAME' ) or define( 'CSSF_BASENAME', $get_path['basename'] );
defined( 'CSSF_DIR' ) or define( 'CSSF_DIR', $get_path['dir'] );
defined( 'CSSF_URI' ) or define( 'CSSF_URI', $get_path['uri'] );
/**
*
* Framework locate template and override files
*
* @since 1.0.0
* @version 1.0.0
*
*/
if( ! function_exists( 'cssf_locate_template' ) ) {
function cssf_locate_template( $template_name ) {
$located = '';
$override = apply_filters( 'cssf_framework_override', 'cssf-framework-override' );
$dir_plugin = WP_PLUGIN_DIR;
$dir_theme = get_template_directory();
$dir_child = get_stylesheet_directory();
$dir_override = '/'. $override .'/'. $template_name;
$dir_template = CSSF_BASENAME .'/'. $template_name;
// child theme override
$child_force_overide = $dir_child . $dir_override;
$child_normal_override = $dir_child . $dir_template;
// theme override paths
$theme_force_override = $dir_theme . $dir_override;
$theme_normal_override = $dir_theme . $dir_template;
// plugin override
$plugin_force_override = $dir_plugin . $dir_override;
$plugin_normal_override = $dir_plugin . $dir_template;
if ( file_exists( $child_force_overide ) ) {
$located = $child_force_overide;
} else if ( file_exists( $child_normal_override ) ) {
$located = $child_normal_override;
} else if ( file_exists( $theme_force_override ) ) {
$located = $theme_force_override;
} else if ( file_exists( $theme_normal_override ) ) {
$located = $theme_normal_override;
} else if ( file_exists( $plugin_force_override ) ) {
$located = $plugin_force_override;
} else if ( file_exists( $plugin_normal_override ) ) {
$located = $plugin_normal_override;
}
$located = apply_filters( 'cssf_locate_template', $located, $template_name );
if ( ! empty( $located ) ) {
load_template( $located, true );
}
return $located;
}
}
/**
*
* Get option
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_get_option' ) ) {
// function cssf_get_option( $option_name = '', $default = '' ) {
function cssf_get_option( $option_name = '', $default = '', $option_array = CSSF_OPTION ) {
// $options = apply_filters( 'cssf_get_option', get_option( CSSF_OPTION ), $option_name, $default );
$options = apply_filters( 'cssf_get_option', get_option( $option_array ), $option_name, $default );
if( ! empty( $option_name ) && ! empty( $options[$option_name] ) ) {
return $options[$option_name];
} else {
return ( ! empty( $default ) ) ? $default : null;
}
}
}
/**
*
* Get meta option
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_get_meta_option' ) ) {
function cssf_get_meta_option( $option_name, $post_id = '', $default = '', $option_meta_id = CSSF_OPTION ) {
$post_id = ! empty( $post_id ) ? $post_id : get_the_ID();
$options = apply_filters( 'cssf_get_meta_option', get_post_meta( $post_id, $option_meta_id, true ), $option_name, $post_id, $default );
if ( ! empty( $option_name ) && ! empty( $options[ $option_name ] ) && ! empty( $post_id ) ) {
return $options[ $option_name ];
} else {
return ( ! empty( $default ) ) ? $default : null;
}
}
}
/**
*
* Set option
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_set_option' ) ) {
// function cssf_set_option( $option_name = '', $new_value = '' ) {
function cssf_set_option( $option_name = '', $new_value = '', $option_array = CSSF_OPTION ) {
// $options = apply_filters( 'cssf_set_option', get_option( CSSF_OPTION ), $option_name, $new_value );
$options = apply_filters( 'cssf_set_option', get_option( $option_array ), $option_name, $new_value );
if( ! empty( $option_name ) ) {
$options[$option_name] = $new_value;
// update_option( CSSF_OPTION, $options );
update_option( $option_array, $options );
}
}
}
/**
*
* Get all option
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_get_all_option' ) ) {
// function cssf_get_all_option() {
function cssf_get_all_option( $option_array = CSSF_OPTION ) {
// return get_option( CSSF_OPTION );
return get_option( $option_array );
}
}
/**
*
* Get all meta option
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_get_all_meta_option' ) ) {
function cssf_get_all_meta_option( $post_id = '', $option_array = CSSF_OPTION ) {
$post_id = ! empty( $post_id ) ? $post_id : get_the_ID();
return get_post_meta( $post_id, $option_array, true );
}
}
/**
*
* Multi language option
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_get_multilang_option' ) ) {
function cssf_get_multilang_option( $option_name = '', $default = '' ) {
$value = cssf_get_option( $option_name, $default );
$languages = cssf_language_defaults();
$default = $languages['default'];
$current = $languages['current'];
if ( is_array( $value ) && is_array( $languages ) && isset( $value[$current] ) ) {
return $value[$current];
} else if ( $default != $current ) {
return '';
}
return $value;
}
}
/**
*
* Multi language value
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_get_multilang_value' ) ) {
function cssf_get_multilang_value( $value = '', $default = '' ) {
$languages = cssf_language_defaults();
$default = $languages['default'];
$current = $languages['current'];
if ( is_array( $value ) && is_array( $languages ) && isset( $value[$current] ) ) {
return $value[$current];
} else if ( $default != $current ) {
return '';
}
return $value;
}
}
/**
*
* Get customize option
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_get_customize_option' ) ) {
function cssf_get_customize_option( $option_name = '', $default = '' ) {
$options = apply_filters( 'cssf_get_customize_option', get_option( CSSF_CUSTOMIZE ), $option_name, $default );
if( ! empty( $option_name ) && ! empty( $options[$option_name] ) ) {
return $options[$option_name];
} else {
return ( ! empty( $default ) ) ? $default : null;
}
}
}
/**
*
* Set customize option
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_set_customize_option' ) ) {
function cssf_set_customize_option( $option_name = '', $new_value = '' ) {
$options = apply_filters( 'cssf_set_customize_option', get_option( CSSF_CUSTOMIZE ), $option_name, $new_value );
if( ! empty( $option_name ) ) {
$options[$option_name] = $new_value;
update_option( CSSF_CUSTOMIZE, $options );
}
}
}
/**
*
* Get all customize option
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_get_all_customize_option' ) ) {
function cssf_get_all_customize_option() {
return get_option( CSSF_CUSTOMIZE );
}
}
/**
*
* WPML plugin is activated
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_is_wpml_activated' ) ) {
function cssf_is_wpml_activated() {
if ( class_exists( 'SitePress' ) ) { return true; } else { return false; }
}
}
/**
*
* qTranslate plugin is activated
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_is_qtranslate_activated' ) ) {
function cssf_is_qtranslate_activated() {
if ( function_exists( 'qtrans_getSortedLanguages' ) ) { return true; } else { return false; }
}
}
/**
*
* Polylang plugin is activated
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_is_polylang_activated' ) ) {
function cssf_is_polylang_activated() {
if ( class_exists( 'Polylang' ) ) { return true; } else { return false; }
}
}
/**
*
* Get language defaults
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_language_defaults' ) ) {
function cssf_language_defaults() {
$multilang = array();
if( cssf_is_wpml_activated() || cssf_is_qtranslate_activated() || cssf_is_polylang_activated() ) {
if( cssf_is_wpml_activated() ) {
global $sitepress;
$multilang['default'] = $sitepress->get_default_language();
$multilang['current'] = $sitepress->get_current_language();
$multilang['languages'] = $sitepress->get_active_languages();
} else if( cssf_is_polylang_activated() ) {
global $polylang;
$current = pll_current_language();
$default = pll_default_language();
$current = ( empty( $current ) ) ? $default : $current;
$poly_langs = $polylang->model->get_languages_list();
$languages = array();
foreach ( $poly_langs as $p_lang ) {
$languages[$p_lang->slug] = $p_lang->slug;
}
$multilang['default'] = $default;
$multilang['current'] = $current;
$multilang['languages'] = $languages;
} else if( cssf_is_qtranslate_activated() ) {
global $q_config;
$multilang['default'] = $q_config['default_language'];
$multilang['current'] = $q_config['language'];
$multilang['languages'] = array_flip( qtrans_getSortedLanguages() );
}
}
$multilang = apply_filters( 'cssf_language_defaults', $multilang );
return ( ! empty( $multilang ) ) ? $multilang : false;
}
}
/**
*
* Get locate for load textdomain
*
* @since 1.0.0
* @version 1.0.0
*
*/
if ( ! function_exists( 'cssf_get_locale' ) ) {
function cssf_get_locale() {
global $locale, $wp_local_package;
if ( isset( $locale ) ) {
return apply_filters( 'locale', $locale );
}
if ( isset( $wp_local_package ) ) {
$locale = $wp_local_package;
}
if ( defined( 'WPLANG' ) ) {
$locale = WPLANG;
}
if ( is_multisite() ) {
if ( defined( 'WP_INSTALLING' ) || ( false === $ms_locale = get_option( 'WPLANG' ) ) ) {
$ms_locale = get_site_option( 'WPLANG' );
}
if ( $ms_locale !== false ) {
$locale = $ms_locale;
}
} else {
$db_locale = get_option( 'WPLANG' );
if ( $db_locale !== false ) {
$locale = $db_locale;
}
}
if ( empty( $locale ) ) {
$locale = 'en_US';
}
return apply_filters( 'locale', $locale );
}
}
/**
*
* Framework load text domain
*
* @since 1.0.0
* @version 1.0.0
*
*/
load_textdomain( 'cssf-framework', CSSF_DIR .'/languages/'. cssf_get_locale() .'.mo' );