当前位置: 首页>>代码示例>>PHP>>正文


PHP Util_Ui::postbox_header方法代码示例

本文整理汇总了PHP中Util_Ui::postbox_header方法的典型用法代码示例。如果您正苦于以下问题:PHP Util_Ui::postbox_header方法的具体用法?PHP Util_Ui::postbox_header怎么用?PHP Util_Ui::postbox_header使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Util_Ui的用法示例。


在下文中一共展示了Util_Ui::postbox_header方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: esc_textarea

namespace W3TC;

if (!defined('W3TC')) {
    die;
}
include W3TC_INC_DIR . '/options/common/header.php';
?>

<form action="admin.php?page=<?php 
echo $this->_page;
?>
" method="post">
    <div class="metabox-holder">
        <?php 
Util_Ui::postbox_header(__('Database Cluster Configuration File', 'w3-total-cache'));
?>
        <table class="form-table">
            <tr>
                <th>
                    <textarea cols="70" rows="25" style="width: 100%"
                        name="newcontent" id="newcontent"
                        tabindex="1"><?php 
echo esc_textarea($content);
?>
</textarea><br />
                    <br />
                    <span class="description">
                        <?php 
_e('Note: Changes will have immediate effect on your database configuration. If the application stops working creating the settings file, edit or remove this configuration file manually at <strong>/wp-content/db-cluster-config.php</strong>.', 'w3-total-cache');
?>
开发者ID:developmentDM2,项目名称:Whohaha,代码行数:30,代码来源:dbcluster-config.php

示例2: printf

<?php

namespace W3TC;

if (!defined('W3TC')) {
    die;
}
Util_Ui::postbox_header(__('<acronym title="Content Delivery Network">CDN</acronym>', 'w3-total-cache'), '', 'cdn');
Util_Ui::config_overloading_button(array('key' => 'cdn.configuration_overloaded'));
?>
<p><?php 
_e('Host static files with your content delivery network provider to reduce page load time.', 'w3-total-cache');
if (!$cdn_enabled) {
    printf(__('If you do not have a <acronym title="Content Delivery Network">CDN</acronym> provider try MaxCDN. <a href="%s" target="_blank">Sign up and save 25&#37;</a>.', 'w3-total-cache'), wp_nonce_url(Util_Ui::admin_url('admin.php?page=w3tc_dashboard&w3tc_cdn_maxcdn_signup'), 'w3tc'));
}
?>
</p>
<table class="form-table">
    <?php 
Util_Ui::config_item(array('key' => 'cdn.enabled', 'control' => 'checkbox', 'checkbox_label' => __('Enable', 'w3-total-cache'), 'description' => __('Theme files, media library attachments, <acronym title="Cascading Style Sheet">CSS</acronym>, <acronym title="JavaScript">JS</acronym> files etc will appear to load instantly for site visitors.', 'w3-total-cache')));
Util_Ui::config_item(array('key' => 'cdn.engine', 'control' => 'selectbox', 'selectbox_values' => $engine_values, 'selectbox_optgroups' => $engine_optgroups, 'description' => __('Select the <acronym title="Content Delivery Network">CDN</acronym> type you wish to use.', 'w3-total-cache') . $cdn_engine_extra_description));
?>
</table>

<?php 
Util_Ui::button_config_save('general_cdn', '<input id="cdn_purge" type="button" value="' . __('Empty cache', 'w3-total-cache') . '" ' . ($cdn_enabled && Cdn_Util::can_purge_all($config->get_string('cdn.engine')) ? '' : ' disabled="disabled" ') . ' class="button {nonce: \'' . wp_create_nonce('w3tc') . '\'}" />');
Util_Ui::postbox_footer();
开发者ID:developmentDM2,项目名称:Whohaha,代码行数:27,代码来源:Cdn_GeneralPage_View.php

示例3: esc_attr

namespace W3TC;

if (!defined('W3TC')) {
    die;
}
?>
<form style="padding: 20px">
    <?php 
if (isset($details['error_message'])) {
    echo '<div class="error">' . $details['error_message'] . '</div>';
}
?>

    <div class="metabox-holder">
        <?php 
Util_Ui::postbox_header(__('Specify API Key', 'w3-total-cache'));
?>
        <table class="form-table">
            <tr>
                <th>
                    <label for="newrelic_api_key"><?php 
_e('<acronym title="Application Programming Interface">API</acronym> key:', 'w3-total-cache');
?>
</label>
                </th>
                <td>
                    <input name="api_key" class="w3tcnr_api_key" type="text"
                        value="<?php 
echo esc_attr($details['api_key']);
?>
" size="45"/>
开发者ID:developmentDM2,项目名称:Whohaha,代码行数:31,代码来源:Extension_NewRelic_Popup_View_Intro.php

示例4:

Util_Ui::hidden('', 'w3tc_action', 'cdn_rackspace_service_actualize_done');
Util_Ui::hidden('', 'user_name', $details['user_name']);
Util_Ui::hidden('', 'api_key', $details['api_key']);
Util_Ui::hidden('', 'access_token', $details['access_token']);
Util_Ui::hidden('', 'access_region_descriptor', $details['access_region_descriptor_serialized']);
Util_Ui::hidden('', 'region', $details['region']);
Util_Ui::hidden('', 'service_id', $details['service_id']);
echo Util_Ui::nonce_field('w3tc');
if (isset($details['error_message'])) {
    echo '<div class="error">' . $details['error_message'] . '</div>';
}
?>

	<div class="metabox-holder">
		<?php 
Util_Ui::postbox_header(__('Configure service', 'w3-total-cache'));
?>
		<table class="form-table">
			<tr>
				<th>Name:</th>
				<td><?php 
echo $details['name'];
?>
</td>
			</tr>
			<tr>
				<th>Origin host:</th>
				<td><?php 
$this->render_service_value_change($details, 'origin');
?>
</td>
开发者ID:developmentDM2,项目名称:Whohaha,代码行数:31,代码来源:Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php

示例5: _e

_e('Reduce the download time for text-based files.', 'w3-total-cache');
?>
</span>
                </th>
            </tr>
        </table>

        <?php 
Util_Ui::button_config_save('browsercache_html_xml');
?>
        <?php 
Util_Ui::postbox_footer();
?>

        <?php 
Util_Ui::postbox_header(__('Media &amp; Other Files', 'w3-total-cache'), '', 'media');
?>
        <table class="form-table">
            <?php 
if (!Util_Environment::is_nginx()) {
    ?>
            <tr>
                <th colspan="2">
                    <?php 
    $this->checkbox('browsercache.other.last_modified');
    ?>
 <?php 
    Util_Ui::e_config_label('browsercache.other.last_modified');
    ?>
</label>
                    <br /><span class="description"><?php 
开发者ID:eduardodomingos,项目名称:eduardodomingos.com,代码行数:31,代码来源:browsercache.php

示例6: esc_attr

if (!defined('W3TC')) {
    die;
}
?>
<form class="w3tc_cdn_rackspace_form" method="post" style="padding: 20px">
	<?php 
Util_Ui::hidden('', 'w3tc_action', 'cdn_rackspace_intro_done');
?>
	<?php 
if (isset($details['error_message'])) {
    echo '<div class="error">' . $details['error_message'] . '</div>';
}
?>
	<div class="metabox-holder">
		<?php 
Util_Ui::postbox_header(__('Your RackSpace API key', 'w3-total-cache'));
?>
		<table class="form-table">
			<tr>
				<th><?php 
_e('Username:', 'w3-total-cache');
?>
</td>
				<td>
					<input name="user_name" type="text" class="w3tc-ignore-change"
						style="width: 100px"
						value="<?php 
echo esc_attr($details['user_name']);
?>
" />
				</td>
开发者ID:developmentDM2,项目名称:Whohaha,代码行数:31,代码来源:Cdn_RackSpaceCdn_Popup_View_Intro.php

示例7: array

    self::cloudflare_checkbox($settings, array('key' => 'browser_check', 'label' => 'Browser Integrity Check', 'description' => 'Browser Integrity Check is similar to Bad Behavior and looks for common HTTP headers abused most commonly by spammers and denies access to your page. It will also challenge visitors that do not have a user agent or a non standard user agent (also commonly used by abuse bots, crawlers or visitors).'));
    self::cloudflare_checkbox($settings, array('key' => 'always_online', 'label' => 'Always Online', 'description' => 'When enabled, Always Online will serve pages from our cache if your server is offline'));
    self::cloudflare_checkbox($settings, array('key' => 'waf', 'label' => 'Web Application Firewall', 'description' => 'The WAF examines HTTP requests to your website. It inspects both GET and POST requests and applies rules to help filter out illegitimate traffic from legitimate website visitors.'));
    self::cloudflare_checkbox($settings, array('key' => 'advanced_ddos', 'label' => 'Advanced DDOS Protection', 'description' => 'Advanced protection from Distributed Denial of Service (DDoS) attacks on your website.'));
    self::cloudflare_textbox($settings, array('key' => 'max_upload', 'label' => 'Max Upload', 'description' => 'Max size of file allowed for uploading'));
    echo '</table>';
    self::cloudflare_button_save('protection');
    Util_Ui::postbox_footer();
    Util_Ui::postbox_header(__('CloudFlare: IP', 'w3-total-cache'), '', 'general');
    echo '<table class="form-table">';
    self::cloudflare_checkbox($settings, array('key' => 'ip_geolocation', 'label' => 'IP Geolocation', 'description' => 'Enable IP Geolocation to have CloudFlare geolocate visitors to your website and pass the country code to you.'));
    self::cloudflare_checkbox($settings, array('key' => 'ipv6', 'label' => 'IPv6', 'description' => 'Enable IPv6.'));
    self::cloudflare_checkbox($settings, array('key' => 'pseudo_ipv4', 'label' => 'Pseudo IPv4', 'description' => 'Support for IPv6 addresses in legacy IPv4 applications.'));
    self::cloudflare_checkbox($settings, array('key' => 'true_client_ip_header', 'label' => 'True Client IP', 'description' => 'Allows customer to continue to use True Client IP (Akamai feature) in the headers we send to the origin.'));
    echo '</table>';
    self::cloudflare_button_save('ip');
    Util_Ui::postbox_footer();
    Util_Ui::postbox_header(__('CloudFlare: SSL', 'w3-total-cache'), '', 'general');
    echo '<table class="form-table">';
    self::cloudflare_selectbox($settings, array('key' => 'ssl', 'label' => 'SSL', 'values' => array('' => '', 'off' => 'Off', 'flexible' => 'Flexible (https to end-user only)', 'full' => 'Full (https everywhere)', 'full_strict' => 'Strict'), 'description' => 'SSL encrypts your visitor\'s connection and safeguards credit card numbers and other personal data to and from your website.'));
    self::cloudflare_checkbox($settings, array('key' => 'security_header', 'label' => 'Security Header (HSTS)', 'description' => 'Enables or disables HSTS header.'));
    self::cloudflare_checkbox($settings, array('key' => 'tls_1_2_only', 'label' => 'TLS 1.2 Only', 'description' => 'Enable Crypto TLS 1.2 feature for this zone and prevent use of previous versions.'));
    self::cloudflare_checkbox($settings, array('key' => 'tls_client_auth', 'label' => 'TLS Client Auth', 'description' => 'TLS Client Auth requires CloudFlare to connect to your origin server using a client certificate'));
    echo '</table>';
    self::cloudflare_button_save('ssl');
    Util_Ui::postbox_footer();
}
?>
    </div>
</form>
<?php 
开发者ID:eduardodomingos,项目名称:eduardodomingos.com,代码行数:31,代码来源:Extension_CloudFlare_Page_View.php

示例8:

?>
<form action="admin.php?page=w3tc_cdn" method="post" style="padding: 20px"
    class="w3tc_cdn_highwinds_form">
    <?php 
Util_Ui::hidden('', 'account_hash', $details['account_hash']);
Util_Ui::hidden('', 'api_token', $details['api_token']);
echo Util_Ui::nonce_field('w3tc');
?>
    <?php 
if (isset($details['error_message'])) {
    echo '<div class="error">' . $details['error_message'] . '</div>';
}
?>
    <div class="metabox-holder">
        <?php 
Util_Ui::postbox_header(__('Select host to use', 'w3-total-cache'));
?>
        <table class="form-table">
            <tr>
                <td>Host:</td>
                <td>
                    <?php 
foreach ($details['hosts'] as $host) {
    ?>
                        <label>
                            <input name="host" type="radio" class="w3tc-ignore-change"
                                value="<?php 
    echo $host['hashCode'];
    ?>
" />
                            <?php 
开发者ID:developmentDM2,项目名称:Whohaha,代码行数:31,代码来源:Cdn_Highwinds_Popup_View_SelectHost.php

示例9: array

        <?php 
Util_Ui::config_item(array('key' => array('genesis.theme', 'genesis_footer'), 'control' => 'checkbox', 'checkbox_label' => __('Enable', 'w3-total-cache'), 'label' => __('Cache genesis footer:', 'w3-total-cache'), 'description' => __('Caches footer loop.', 'w3-total-cache')));
Util_Ui::config_item(array('key' => array('genesis.theme', 'wp_footer'), 'control' => 'checkbox', 'checkbox_label' => __('Enable', 'w3-total-cache'), 'label' => __('Cache footer:', 'w3-total-cache'), 'description' => __('Caches wp_footer loop.', 'w3-total-cache')));
Util_Ui::config_item(array('key' => array('genesis.theme', 'reject_logged_roles'), 'control' => 'checkbox', 'checkbox_label' => __('Enable', 'w3-total-cache'), 'label' => __('Disable fragment cache:', 'w3-total-cache'), 'description' => 'Don\'t use fragment cache with the following hooks and for the specified user roles.'));
?>
    </table>
    <?php 
Util_Ui::button_config_save('extension_genesis_footer');
?>
    <?php 
Util_Ui::postbox_footer();
?>


    <?php 
Util_Ui::postbox_header(__('Exclusions', 'w3-total-cache'), '', 'exclusions');
?>
    <table class="form-table">
        <tr>
            <td><?php 
_e('Select hooks', 'w3-total-cache');
?>
</td>
            <td>
                <?php 
$saved_hooks = $config->get_array(array('genesis.theme', 'reject_logged_roles_on_actions'));
$name = Util_Ui::config_key_to_http_name(array('genesis.theme', 'reject_logged_roles_on_actions'));
$hooks = array('genesis_header' => 'Header', 'genesis_footer' => 'Footer', 'genesis_sidebar' => 'Sidebar', 'genesis_loop' => 'The Loop', 'wp_head' => 'wp_head', 'wp_footer' => 'wp_footer', 'genesis_comments' => 'Comments', 'genesis_pings' => 'Pings', 'genesis_do_nav' => 'Primary navigation', 'genesis_do_subnav' => 'Secondary navigation');
?>

                <input <?php 
开发者ID:developmentDM2,项目名称:Whohaha,代码行数:31,代码来源:Extension_Genesis_Page_View.php

示例10: array

<?php

namespace W3TC;

if (!defined('W3TC')) {
    die;
}
Util_Ui::postbox_header('Fragment Cache', '', 'fragment_cache');
?>
<p>Enable fragment caching reduce execution time for common operations.</p>

<table class="form-table">
    <?php 
Util_Ui::config_item_engine(array('key' => array('fragmentcache', 'engine'), 'label' => __('Fragment Cache Method:', 'w3-total-cache'), 'empty_value' => true));
?>
</table>

<?php 
Util_Ui::button_config_save('general_feedburner', '<input type="submit" name="w3tc_flush_fragmentcache" value="' . __('Empty cache', 'w3-total-cache') . '" class="button" />');
Util_Ui::postbox_footer();
开发者ID:developmentDM2,项目名称:Whohaha,代码行数:20,代码来源:Extension_FragmentCache_GeneralPage_View.php

示例11:

namespace W3TC;

if (!defined('W3TC')) {
    die;
}
?>
<form class="w3tc_popup_form">
    <?php 
if (isset($details['error_message'])) {
    echo '<div class="error">' . $details['error_message'] . '</div>';
}
?>
    <div class="metabox-holder">
        <?php 
Util_Ui::postbox_header(__('Your MaxCDN Account credentials', 'w3-total-cache'));
?>
        <table class="form-table">
            <tr>
                <td>API Key:</td>
                <td>
                    <input name="api_key" type="text" class="w3tc-ignore-change"
                        style="width: 550px"
                        value="<?php 
echo $details['api_key'];
?>
" />
                    <br />
                    <span class="description">
                        To obtain API key you can
                        <a target="_blank" href="<?php 
开发者ID:developmentDM2,项目名称:Whohaha,代码行数:30,代码来源:Cdn_MaxCdnFsd_Popup_View_Intro.php

示例12: sprintf

<?php

namespace W3TC;

if (!defined('W3TC')) {
    die;
}
Util_Ui::postbox_header(__('Monitoring', 'w3-total-cache'), '', 'monitoring');
Util_Ui::config_overloading_button(array('key' => 'newrelic.configuration_overloaded'));
?>

<?php 
if (!$new_relic_installed) {
    ?>
    <p><?php 
    echo sprintf(__('
        New Relic may not be installed or not active on this server. %s. Visit %s for installation instructions.', 'w3-total-cache'), '<a href="' . esc_attr(NEWRELIC_SIGNUP_URL) . '" target="_blank">' . __('Sign up for a (free) account', 'w3-total-cache') . '</a>', '<a href="https://newrelic.com/docs/php/new-relic-for-php" target="_blank">New Relic</a>');
    ?>
    </p>
<?php 
}
?>

<table class="form-table">
    <tr>
        <th>
            <label for="newrelic_api_key"><?php 
_e('<acronym title="Application Programming Interface">API</acronym> key:', 'w3-total-cache');
?>
</label>
        </th>
开发者ID:developmentDM2,项目名称:Whohaha,代码行数:31,代码来源:Extension_NewRelic_GeneralPage_View.php

示例13:

namespace W3TC;

if (!defined('W3TC')) {
    die;
}
?>
<form class="w3tc_cdn_highwinds_form" method="post" style="padding: 20px">
	<?php 
if (isset($details['error_message'])) {
    echo '<div class="error">' . $details['error_message'] . '</div>';
}
?>
	<div class="metabox-holder">
		<?php 
Util_Ui::postbox_header(__('Your Highwinds API Token', 'w3-total-cache'));
?>
		<table class="form-table">
			<tr>
				<td>API Token:</td>
				<td>
					<input name="api_token" type="text" class="w3tc-ignore-change"
						value="" style="width: 550px" />
				</td>
			</tr>
		</table>

		<p class="submit">
			<input type="button"
				class="w3tc_cdn_highwinds_select_host w3tc-button-save button-primary"
				value="<?php 
开发者ID:developmentDM2,项目名称:Whohaha,代码行数:30,代码来源:Cdn_Highwinds_Popup_View_Intro.php

示例14:

if (!defined('W3TC')) {
    die;
}
?>
<form action="admin.php?page=w3tc_cdn" method="post" style="padding: 20px">
    <?php 
Util_Ui::hidden('', 'client_id', $client_id);
Util_Ui::hidden('', 'access_token', $access_token);
Util_Ui::hidden('', 'refresh_token', $refresh_token);
echo Util_Ui::nonce_field('w3tc');
?>
    <br /><br />
    <div class="metabox-holder">
        <?php 
Util_Ui::postbox_header(__('Select folder', 'w3-total-cache'));
?>
        <table class="form-table">
            <tr>
                <td>Folder:</td>
                <td>
                    <?php 
foreach ($folders as $folder) {
    ?>
                        <label>
                            <input name="folder" type="radio" class="w3tc-ignore-change"
                                value="<?php 
    echo $folder->id;
    ?>
" />
                            <?php 
开发者ID:developmentDM2,项目名称:Whohaha,代码行数:30,代码来源:Cdn_GoogleDrive_Popup_AuthReturn_View.php

示例15:

    <?php 
Util_Ui::hidden('', 'w3tc_action', 'cdn_rackspace_regions_done');
Util_Ui::hidden('', 'user_name', $details['user_name']);
Util_Ui::hidden('', 'api_key', $details['api_key']);
Util_Ui::hidden('', 'access_token', $details['access_token']);
Util_Ui::hidden('', 'region_descriptors', $details['region_descriptors_serialized']);
echo Util_Ui::nonce_field('w3tc');
?>
    <?php 
if (isset($details['error_message'])) {
    echo '<div class="error">' . $details['error_message'] . '</div>';
}
?>
    <div class="metabox-holder">
        <?php 
Util_Ui::postbox_header(__('Select region', 'w3-total-cache'));
?>
        <table class="form-table">
            <tr>
                <th>Region:</td>
                <td>
                    <?php 
foreach ($details['region_descriptors'] as $region => $region_details) {
    ?>
                        <label>
                            <input name="region" type="radio" class="w3tc-ignore-change"
                                value="<?php 
    echo $region;
    ?>
" />
                            <?php 
开发者ID:developmentDM2,项目名称:Whohaha,代码行数:31,代码来源:Cdn_RackSpaceCdn_Popup_View_Regions.php


注:本文中的Util_Ui::postbox_header方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。