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


PHP TablePress::url方法代码示例

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


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

示例1: postbox_no_tables

    /**
     * Print the content of the "No tables found" post meta box
     *
     * @since 1.0.0
     */
    public function postbox_no_tables($data, $box)
    {
        $add_url = TablePress::url(array('action' => 'add'));
        $import_url = TablePress::url(array('action' => 'import'));
        ?>
		<p><?php 
        _e('No tables found.', 'tablepress');
        ?>
</p>
		<p><?php 
        printf(__('You should <a href="%s">add</a> or <a href="%s">import</a> a table to get started!', 'tablepress'), $add_url, $import_url);
        ?>
</p>
		<?php 
    }
开发者ID:heyjones,项目名称:crossfitpurpose,代码行数:20,代码来源:view-export.php

示例2: textbox_corrupted_table

    /**
     * Print a notification about a corrupted table
     *
     * @since 1.4.0
     */
    public function textbox_corrupted_table($data, $box)
    {
        ?>
		<div class="error">
			<p><strong><?php 
        _e('Attention: Unfortunately, an error occured.', 'tablepress');
        ?>
</strong></p>
			<p>
				<?php 
        printf(__('The internal data of table &#8220;%1$s&#8221 (ID %2$s) is corrupted.', 'tablepress'), esc_html($data['table']['name']), esc_html($data['table']['id']));
        echo ' ';
        printf(__('The following error was registered: <code>%s</code>.', 'tablepress'), esc_html($data['table']['json_error']));
        ?>
			</p>
			<p>
				<?php 
        _e('Because of this error, the table can not be edited at this time, to prevent possible further data loss.', 'tablepress');
        echo ' ';
        printf(__('Please see the <a href="%s">TablePress FAQ page</a> for further instructions.', 'tablepress'), 'http://tablepress.org/faq/corrupted-tables/');
        ?>
			</p>
			<p>
				<?php 
        echo '<a href="' . TablePress::url(array('action' => 'list')) . '" class="button">' . __('Back to the List of Tables', 'tablepress') . '</a>';
        ?>
			</p>
		</div>
		<?php 
    }
开发者ID:heyjones,项目名称:crossfitpurpose,代码行数:35,代码来源:view-edit.php

示例3: no_items

 /**
  * Holds the message to be displayed when there are no items in the table
  *
  * @since 1.0.0
  */
 public function no_items()
 {
     _e('No tables found.', 'tablepress');
     if (0 === $this->items_count) {
         $user_can_add_tables = current_user_can('tablepress_add_tables');
         $user_can_import_tables = current_user_can('tablepress_import_tables');
         $add_url = TablePress::url(array('action' => 'add'));
         $import_url = TablePress::url(array('action' => 'import'));
         if ($user_can_add_tables && $user_can_import_tables) {
             echo ' ' . sprintf(__('You should <a href="%s">add</a> or <a href="%s">import</a> a table to get started!', 'tablepress'), $add_url, $import_url);
         } elseif ($user_can_add_tables) {
             echo ' ' . sprintf(__('You should <a href="%s">add</a> a table to get started!', 'tablepress'), $add_url);
         } elseif ($user_can_import_tables) {
             echo ' ' . sprintf(__('You should <a href="%s">import</a> a table to get started!', 'tablepress'), $import_url);
         }
     }
 }
开发者ID:adisonc,项目名称:MaineLearning,代码行数:22,代码来源:view-list.php

示例4: shortcode_table


//.........这里部分代码省略.........
     foreach ($shortcode_atts as $key => $value) {
         // have to check this, because strings 'true' or 'false' are not recognized as boolean!
         if ('true' == strtolower($value)) {
             $render_options[$key] = true;
         } elseif ('false' == strtolower($value)) {
             $render_options[$key] = false;
         } elseif (is_null($value) && isset($table['options'][$key])) {
             $render_options[$key] = $table['options'][$key];
         } else {
             $render_options[$key] = $value;
         }
     }
     // generate unique HTML ID, depending on how often this table has already been shown on this page
     if (!isset($this->shown_tables[$table_id])) {
         $this->shown_tables[$table_id] = array('count' => 0, 'instances' => array());
     }
     $this->shown_tables[$table_id]['count']++;
     $count = $this->shown_tables[$table_id]['count'];
     $render_options['html_id'] = "tablepress-{$table_id}";
     if ($count > 1) {
         $render_options['html_id'] .= "-no-{$count}";
     }
     /**
      * Filter the ID of the table HTML element.
      *
      * @since 1.0.0
      *
      * @param string $html_id  The ID of the table HTML element.
      * @param string $table_id The current table ID.
      * @param string $count    Number of copies of the table with this table ID on the page.
      */
     $render_options['html_id'] = apply_filters('tablepress_html_id', $render_options['html_id'], $table_id, $count);
     // generate "Edit Table" link
     $render_options['edit_table_url'] = '';
     /**
      * Filter whether the "Edit" link below the table shall be shown.
      *
      * The "Edit" link is only shown to logged-in users who possess the necessary capability to edit the table.
      *
      * @since 1.0.0
      *
      * @param bool   $show     Whether to show the "Edit" link below the table. Default true.
      * @param string $table_id The current table ID.
      */
     if (is_user_logged_in() && apply_filters('tablepress_edit_link_below_table', true, $table['id']) && current_user_can('tablepress_edit_table', $table['id'])) {
         $render_options['edit_table_url'] = TablePress::url(array('action' => 'edit', 'table_id' => $table['id']));
     }
     /**
      * Filter the render options for the table.
      *
      * The render options are determined from the settings on a table's "Edit" screen and the Shortcode parameters.
      *
      * @since 1.0.0
      *
      * @param array $render_options The render options for the table.
      * @param array $table          The current table.
      */
     $render_options = apply_filters('tablepress_table_render_options', $render_options, $table);
     // eventually add this table to list of tables which have a JS library enabled and thus are to be included in the script's call in the footer
     if ($render_options['use_datatables'] && $render_options['table_head'] && count($table['data']) > 1) {
         // get options for the DataTables JavaScript library from the table's render options
         $js_options = array();
         foreach (array('alternating_row_colors', 'datatables_sort', 'datatables_paginate', 'datatables_paginate', 'datatables_paginate_entries', 'datatables_lengthchange', 'datatables_filter', 'datatables_info', 'datatables_scrollx', 'datatables_scrolly', 'datatables_locale', 'datatables_custom_commands') as $option) {
             $js_options[$option] = $render_options[$option];
         }
         /**
开发者ID:heyjones,项目名称:crossfitpurpose,代码行数:67,代码来源:controller-frontend.php

示例5: print_nav_tab_menu

    /**
     * Render the navigation menu with links to the possible actions, highlighting the current one.
     *
     * @since 1.0.0
     */
    protected function print_nav_tab_menu()
    {
        ?>
		<h1 id="tablepress-nav" class="nav-tab-wrapper">
			<?php 
        echo '<span class="plugin-name">' . __('TablePress', 'tablepress') . '</span><span class="separator"></span>';
        foreach ($this->data['view_actions'] as $action => $entry) {
            // Special case: Add a separator before the group that starts with "Plugin Options", for some spacing.
            if ('options' === $action) {
                echo '<span class="separator"></span><span class="separator"></span>';
            }
            if ('' === $entry['nav_tab_title']) {
                continue;
            }
            if (!current_user_can($entry['required_cap'])) {
                continue;
            }
            $url = esc_url(TablePress::url(array('action' => $action)));
            $active = $action === $this->action ? ' nav-tab-active' : '';
            echo "<a class=\"nav-tab{$active}\" href=\"{$url}\">{$entry['nav_tab_title']}</a>";
        }
        ?>
		</h1>
		<?php 
    }
开发者ID:akumanu,项目名称:wordpress-gk,代码行数:30,代码来源:class-view.php

示例6: test_url_toplevel

 /**
  * Test that the screen URLs for toplevel admin menu entries are correct.
  *
  * @since 1.1.0
  */
 public function test_url_toplevel()
 {
     TablePress::$controller->is_top_level_page = true;
     TablePress::$controller->parent_page = 'middle';
     $this->assertSame('http://example.org/wp-admin/admin.php?page=tablepress', TablePress::url());
     $this->assertSame('http://example.org/wp-admin/admin.php?page=tablepress', TablePress::url(array(), false));
 }
开发者ID:pedro-mendonca,项目名称:TablePress,代码行数:12,代码来源:test-utils.php

示例7: textbox_proceed_no_file_saving

    /**
     * Print the content of the "Cancel Saving" text box.
     *
     * @since 1.0.0
     *
     * @param array $data Data for this screen.
     * @param array $box  Information about the text box.
     */
    public function textbox_proceed_no_file_saving(array $data, array $box)
    {
        ?>
		<h3><?php 
        _e('Proceed without saving a file', 'tablepress');
        ?>
</h3>
		<p>
			<?php 
        _e('To proceed without trying to save the &#8220;Custom CSS&#8221; to a file, click the button below.', 'tablepress');
        ?>
			<?php 
        _e('Your &#8220;Custom CSS&#8221; will then be loaded inline.', 'tablepress');
        ?>
		</p><p>
			<a href="<?php 
        echo TablePress::url(array('action' => 'options', 'message' => 'success_save_error_custom_css'));
        ?>
" class="button button-large"><?php 
        _e('Proceed without saving &#8220;Custom CSS&#8221; to a file', 'tablepress');
        ?>
</a>
		</p>
		<?php 
    }
开发者ID:andrewfandrew,项目名称:bronze-boar,代码行数:33,代码来源:view-options_custom_css.php

示例8: handle_get_action_copy_table

 /**
  * Copy a table.
  *
  * @since 1.0.0
  */
 public function handle_get_action_copy_table()
 {
     $table_id = !empty($_GET['item']) ? $_GET['item'] : false;
     TablePress::check_nonce('copy_table', $table_id);
     $return = !empty($_GET['return']) ? $_GET['return'] : 'list';
     $return_item = !empty($_GET['return_item']) ? $_GET['return_item'] : false;
     // Nonce check should actually catch this already.
     if (false === $table_id) {
         TablePress::redirect(array('action' => $return, 'message' => 'error_copy', 'table_id' => $return_item));
     }
     if (!current_user_can('tablepress_copy_table', $table_id)) {
         wp_die(__('You do not have sufficient permissions to access this page.', 'default'), 403);
     }
     $this->init_i18n_support();
     // for the translation of "Copy of".
     $copy_table_id = TablePress::$model_table->copy($table_id);
     if (is_wp_error($copy_table_id)) {
         TablePress::redirect(array('action' => $return, 'message' => 'error_copy', 'table_id' => $return_item));
     } else {
         $return_item = $copy_table_id;
     }
     /*
      * Slightly more complex redirect method, to account for sort, search, and pagination in the WP_List_Table on the List View,
      * but only if this action succeeds, to have everything fresh in the event of an error.
      */
     $sendback = wp_get_referer();
     if (!$sendback) {
         $sendback = TablePress::url(array('action' => $return, 'message' => 'success_copy', 'table_id' => $return_item));
     } else {
         $sendback = remove_query_arg(array('action', 'message', 'table_id'), $sendback);
         $sendback = add_query_arg(array('action' => $return, 'message' => 'success_copy', 'table_id' => $return_item), $sendback);
     }
     wp_redirect($sendback);
     exit;
 }
开发者ID:pedro-mendonca,项目名称:TablePress,代码行数:40,代码来源:controller-admin.php

示例9: textbox_uninstall_tablepress

    /**
     * Print the content of the "Admin Options" post meta box.
     *
     * @since 1.0.0
     *
     * @param array $data Data for this screen.
     * @param array $box  Information about the text box.
     */
    public function textbox_uninstall_tablepress(array $data, array $box)
    {
        ?>
		<h1 style="margin-top:40px;"><?php 
        _e('Uninstall TablePress', 'tablepress');
        ?>
</h1>
		<p><?php 
        echo __('Uninstalling <strong>will permanently delete</strong> all TablePress tables and options from the database.', 'tablepress') . '<br />' . __('It is recommended that you create a backup of the tables (by exporting the tables in the JSON format), in case you later change your mind.', 'tablepress') . '<br />' . __('You will manually need to remove the plugin&#8217;s files from the plugin folder afterwards.', 'tablepress') . '<br />' . __('Be very careful with this and only click the button if you know what you are doing!', 'tablepress');
        ?>
</p>
		<p><a href="<?php 
        echo TablePress::url(array('action' => 'uninstall_tablepress'), true, 'admin-post.php');
        ?>
" id="uninstall-tablepress" class="button"><?php 
        _e('Uninstall TablePress', 'tablepress');
        ?>
</a></p>
		<?php 
    }
开发者ID:akumanu,项目名称:wordpress-gk,代码行数:28,代码来源:view-options.php

示例10: shortcode_table

 /**
  * Handle Shortcode [table id=<ID> /] in the_content()
  *
  * @since 1.0.0
  *
  * @param array $shortcode_atts List of attributes that where included in the Shortcode
  * @return string Resulting HTML code for the table with the ID <ID>
  */
 public function shortcode_table($shortcode_atts)
 {
     $_render = TablePress::load_class('TablePress_Render', 'class-render.php', 'classes');
     $default_shortcode_atts = $_render->get_default_render_options();
     $default_shortcode_atts = apply_filters('tablepress_shortcode_table_default_shortcode_atts', $default_shortcode_atts);
     // parse Shortcode attributes, only allow those that are specified
     $shortcode_atts = shortcode_atts($default_shortcode_atts, $shortcode_atts);
     $shortcode_atts = apply_filters('tablepress_shortcode_table_shortcode_atts', $shortcode_atts);
     // check, if a table with the given ID exists
     $table_id = preg_replace('/[^a-zA-Z0-9_-]/', '', $shortcode_atts['id']);
     if (!$this->model_table->table_exists($table_id)) {
         $message = "[table &#8220;{$table_id}&#8221; not found /]<br />\n";
         $message = apply_filters('tablepress_table_not_found_message', $message, $table_id);
         return $message;
     }
     // load the table
     $table = $this->model_table->load($table_id);
     if (false === $table) {
         $message = "[table &#8220;{$table_id}&#8221; could not be loaded /]<br />\n";
         $message = apply_filters('tablepress_table_load_error_message', $message, $table_id);
         return $message;
     }
     // Disable the "datatables_custom_commands" Shortcode parameter by default, for security reasons
     if (!is_null($shortcode_atts['datatables_custom_commands']) && apply_filters('tablepress_disable_custom_commands_shortcode_parameter', true)) {
         $shortcode_atts['datatables_custom_commands'] = null;
     }
     // determine options to use (if set in Shortcode, use those, otherwise use stored options, i.e. "Edit Table" screen)
     $render_options = array();
     foreach ($shortcode_atts as $key => $value) {
         // have to check this, because strings 'true' or 'false' are not recognized as boolean!
         if ('true' == strtolower($value)) {
             $render_options[$key] = true;
         } elseif ('false' == strtolower($value)) {
             $render_options[$key] = false;
         } elseif (is_null($value) && isset($table['options'][$key])) {
             $render_options[$key] = $table['options'][$key];
         } else {
             $render_options[$key] = $value;
         }
     }
     // generate unique HTML ID, depending on how often this table has already been shown on this page
     if (!isset($this->shown_tables[$table_id])) {
         $this->shown_tables[$table_id] = array('count' => 0, 'instances' => array());
     }
     $this->shown_tables[$table_id]['count']++;
     $count = $this->shown_tables[$table_id]['count'];
     $render_options['html_id'] = "tablepress-{$table_id}";
     if ($count > 1) {
         $render_options['html_id'] .= "-no-{$count}";
     }
     $render_options['html_id'] = apply_filters('tablepress_html_id', $render_options['html_id'], $table_id, $count);
     // generate "Edit Table" link
     $render_options['edit_table_url'] = '';
     if (is_user_logged_in() && apply_filters('tablepress_edit_link_below_table', true) && current_user_can('tablepress_edit_table', $table['id'])) {
         $render_options['edit_table_url'] = TablePress::url(array('action' => 'edit', 'table_id' => $table['id']));
     }
     $render_options = apply_filters('tablepress_table_render_options', $render_options, $table);
     // eventually add this table to list of tables which have a JS library enabled and thus are to be included in the script's call in the footer
     if ($render_options['use_datatables'] && $render_options['table_head'] && count($table['data']) > 1) {
         // get options for the DataTables JavaScript library from the table's render options
         $js_options = array();
         foreach (array('alternating_row_colors', 'datatables_sort', 'datatables_paginate', 'datatables_paginate', 'datatables_paginate_entries', 'datatables_lengthchange', 'datatables_filter', 'datatables_info', 'datatables_scrollx', 'datatables_scrolly', 'datatables_locale', 'datatables_custom_commands') as $option) {
             $js_options[$option] = $render_options[$option];
         }
         $js_options = apply_filters('tablepress_table_js_options', $js_options, $table_id, $render_options);
         // need this filter to e.g. set JS parameters depending on Shortcode attributes
         $this->shown_tables[$table_id]['instances'][$render_options['html_id']] = $js_options;
         $this->_enqueue_datatables();
     }
     // check if table output shall and can be loaded from the transient cache, otherwise generate the output
     if ($render_options['cache_table_output'] && !is_user_logged_in()) {
         $table_hash = md5(json_encode($render_options));
         // hash the Render Options array to get a unique cache identifier
         $transient_name = 'tablepress_' . $table_hash;
         // Attention: This string must not be longer than 45 characters!
         $output = get_transient($transient_name);
         if (false === $output || '' == $output) {
             // render/generate the table HTML, as it was not found in the cache
             $_render->set_input($table, $render_options);
             $output = $_render->get_output();
             // save output to a transient
             set_transient($transient_name, $output, DAY_IN_SECONDS);
             // store $output in a transient, set cache timeout to 24 hours
             // update output caches list transient (necessary for cache invalidation upon table saving)
             $caches_list_transient_name = 'tablepress_c_' . md5($table_id);
             $caches_list = get_transient($caches_list_transient_name);
             if (false === $caches_list) {
                 $caches_list = array();
             } else {
                 $caches_list = json_decode($caches_list, true);
             }
             if (!in_array($transient_name, $caches_list, true)) {
//.........这里部分代码省略.........
开发者ID:adisonc,项目名称:MaineLearning,代码行数:101,代码来源:controller-frontend.php

示例11: postbox_table_options


//.........这里部分代码省略.........
        ?>
</label></td>
	</tr>
	<tr class="bottom-border">
		<th class="column-1" scope="row"><?php 
        _e('Table Foot Row', 'tablepress');
        ?>
:</th>
		<td class="column-2"><label for="option-table-foot"><input type="checkbox" id="option-table-foot" name="table[options][table_foot]" value="true"<?php 
        checked($options['table_foot']);
        ?>
 /> <?php 
        _e('The last row of the table is the table footer.', 'tablepress');
        ?>
</label></td>
	</tr>
	<tr class="top-border">
		<th class="column-1" scope="row"><?php 
        _e('Alternating Row Colors', 'tablepress');
        ?>
:</th>
		<td class="column-2"><label for="option-alternating-row-colors"><input type="checkbox" id="option-alternating-row-colors" name="table[options][alternating_row_colors]" value="true"<?php 
        checked($options['alternating_row_colors']);
        ?>
 /> <?php 
        _e('The background colors of consecutive rows shall alternate.', 'tablepress');
        ?>
</label></td>
	</tr>
	<tr class="bottom-border">
		<th class="column-1" scope="row"><?php 
        _e('Row Hover Highlighting', 'tablepress');
        ?>
:</th>
		<td class="column-2"><label for="option-row-hover"><input type="checkbox" id="option-row-hover" name="table[options][row_hover]" value="true"<?php 
        checked($options['row_hover']);
        ?>
 /> <?php 
        _e('Highlight a row while the mouse cursor hovers above it by changing its background color.', 'tablepress');
        ?>
</label></td>
	</tr>
	<tr class="top-border">
		<th class="column-1" scope="row"><?php 
        _e('Print Table Name', 'tablepress');
        ?>
:</th>
		<?php 
        $position_select = '<select id="option-print-name-position" name="table[options][print_name_position]">';
        $position_select .= '<option' . selected('above', $options['print_name_position'], false) . ' value="above">' . __('above', 'tablepress') . '</option>';
        $position_select .= '<option' . selected('below', $options['print_name_position'], false) . ' value="below">' . __('below', 'tablepress') . '</option>';
        $position_select .= '</select>';
        ?>
		<td class="column-2"><input type="checkbox" id="option-print-name" name="table[options][print_name]" value="true"<?php 
        checked($options['print_name']);
        ?>
 /> <?php 
        printf(__('The table name shall be written %s the table.', 'tablepress'), $position_select);
        ?>
</td>
	</tr>
	<tr class="bottom-border">
		<th class="column-1" scope="row"><?php 
        _e('Print Table Description', 'tablepress');
        ?>
:</th>
		<?php 
        $position_select = '<select id="option-print-description-position" name="table[options][print_description_position]">';
        $position_select .= '<option' . selected('above', $options['print_description_position'], false) . ' value="above">' . __('above', 'tablepress') . '</option>';
        $position_select .= '<option' . selected('below', $options['print_description_position'], false) . ' value="below">' . __('below', 'tablepress') . '</option>';
        $position_select .= '</select>';
        ?>
		<td class="column-2"><input type="checkbox" id="option-print-description" name="table[options][print_description]" value="true"<?php 
        checked($options['print_description']);
        ?>
 /> <?php 
        printf(__('The table description shall be written %s the table.', 'tablepress'), $position_select);
        ?>
</td>
	</tr>
	<tr class="top-border">
		<th class="column-1" scope="row"><?php 
        _e('Extra CSS Classes', 'tablepress');
        ?>
:</th>
		<td class="column-2"><label for="option-extra-css-classes"><input type="text" id="option-extra-css-classes" class="large-text" name="table[options][extra_css_classes]" value="<?php 
        echo esc_attr($options['extra_css_classes']);
        ?>
" title="<?php 
        esc_attr_e('This field can only contain letters, numbers, spaces, hyphens (-), and underscores (_).', 'tablepress');
        ?>
" pattern="[A-Za-z0-9- _]*" /><p class="description"><?php 
        echo __('Additional CSS classes for styling purposes can be entered here.', 'tablepress') . ' ' . sprintf(__('This is NOT the place to enter <a href="%s">Custom CSS</a> code!', 'tablepress'), TablePress::url(array('action' => 'options')));
        ?>
</p></label></td>
	</tr>
</tbody>
</table>
<?php 
    }
开发者ID:adisonc,项目名称:MaineLearning,代码行数:101,代码来源:view-edit.php


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