晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
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/wpseo-news/classes/ |
Upload File : |
<?php
/**
* Yoast SEO: News plugin file.
*
* @package WPSEO_News\Admin
*/
/**
* Represents wrappers for the form methods.
*/
class WPSEO_News_Wrappers {
/**
* Fallback for admin_header.
*
* @param bool $form Whether or not the form start tag should be included.
* @param string $option_long_name Group name of the option.
* @param string $option The short name of the option to use for the current page.
* @param bool $contains_files Whether the form should allow for file uploads.
*
* @return mixed
*/
public static function admin_header( $form = true, $option_long_name = 'yoast_wpseo_options', $option = 'wpseo', $contains_files = false ) {
if ( method_exists( 'Yoast_Form', 'admin_header' ) ) {
Yoast_Form::get_instance()->admin_header( $form, $option, $contains_files, $option_long_name );
return;
}
return self::admin_pages()->admin_header( true, 'yoast_wpseo_news_options', 'wpseo_news' );
}
/**
* Fallback for admin_footer.
*
* @param bool $submit Whether or not a submit button and form end tag should be shown.
* @param bool $show_sidebar Whether or not to show the banner sidebar - used by premium plugins to disable it.
*
* @return mixed
*/
public static function admin_footer( $submit = true, $show_sidebar = true ) {
if ( method_exists( 'Yoast_Form', 'admin_footer' ) ) {
Yoast_Form::get_instance()->admin_footer( $submit, $show_sidebar );
return;
}
return self::admin_pages()->admin_footer( $submit, $show_sidebar );
}
/**
* Fallback for the textinput method.
*
* @param string $var The variable within the option to create the text input field for.
* @param string $label The label to show for the variable.
* @param string $option The option to use.
*
* @return mixed
*/
public static function textinput( $var, $label, $option = '' ) {
if ( method_exists( 'Yoast_Form', 'textinput' ) ) {
if ( $option !== '' ) {
Yoast_Form::get_instance()->set_option( $option );
}
Yoast_Form::get_instance()->textinput( $var, $label );
return;
}
return self::admin_pages()->textinput( $var, $label, $option );
}
/**
* Wrapper for select method.
*
* @param string $var The variable within the option to create the select for.
* @param string $label The label to show for the variable.
* @param array $values The select options to choose from.
* @param string $option The option to use.
*
* @return mixed
*/
public static function select( $var, $label, $values, $option = '' ) {
if ( method_exists( 'Yoast_Form', 'select' ) ) {
if ( $option !== '' ) {
Yoast_Form::get_instance()->set_option( $option );
}
Yoast_Form::get_instance()->select( $var, $label, $values );
return;
}
return self::admin_pages()->select( $var, $label, $option );
}
/**
* Wrapper for checkbox method.
*
* @param string $var The variable within the option to create the checkbox for.
* @param string $label The label to show for the variable.
* @param bool $label_left Whether the label should be left (true) or right (false).
* @param string $option The option to use.
*
* @return mixed
*/
public static function checkbox( $var, $label, $label_left = false, $option = '' ) {
if ( method_exists( 'Yoast_Form', 'checkbox' ) ) {
if ( $option !== '' ) {
Yoast_Form::get_instance()->set_option( $option );
}
Yoast_Form::get_instance()->checkbox( $var, $label, $label_left );
return;
}
return self::admin_pages()->checkbox( $var, $label, $label_left, $option );
}
/**
* Returns the wpseo_admin pages global variable.
*
* @return mixed
*/
private static function admin_pages() {
global $wpseo_admin_pages;
return $wpseo_admin_pages;
}
}