Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.145.43.200
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
baltic /
web /
modules /
views /
plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
export_ui
[ DIR ]
drwxr-xr-x
views_wizard
[ DIR ]
drwxr-xr-x
views_plugin_access.inc
2.05
KB
-rw-r--r--
views_plugin_access_none.inc
295
B
-rw-r--r--
views_plugin_access_perm.inc
1.68
KB
-rw-r--r--
views_plugin_access_role.inc
1.84
KB
-rw-r--r--
views_plugin_argument_default....
2.59
KB
-rw-r--r--
views_plugin_argument_default_...
1
KB
-rw-r--r--
views_plugin_argument_default_...
1.81
KB
-rw-r--r--
views_plugin_argument_default_...
1.46
KB
-rw-r--r--
views_plugin_argument_validate...
2.82
KB
-rw-r--r--
views_plugin_argument_validate...
350
B
-rw-r--r--
views_plugin_argument_validate...
1.83
KB
-rw-r--r--
views_plugin_cache.inc
10.61
KB
-rw-r--r--
views_plugin_cache_none.inc
410
B
-rw-r--r--
views_plugin_cache_time.inc
3.66
KB
-rw-r--r--
views_plugin_display.inc
107.82
KB
-rw-r--r--
views_plugin_display_attachmen...
9.08
KB
-rw-r--r--
views_plugin_display_block.inc
7.77
KB
-rw-r--r--
views_plugin_display_default.i...
1.58
KB
-rw-r--r--
views_plugin_display_embed.inc
274
B
-rw-r--r--
views_plugin_display_extender....
1.29
KB
-rw-r--r--
views_plugin_display_feed.inc
6.96
KB
-rw-r--r--
views_plugin_display_page.inc
21.03
KB
-rw-r--r--
views_plugin_exposed_form.inc
11.39
KB
-rw-r--r--
views_plugin_exposed_form_basi...
260
B
-rw-r--r--
views_plugin_exposed_form_inpu...
3.09
KB
-rw-r--r--
views_plugin_localization.inc
4.68
KB
-rw-r--r--
views_plugin_localization_core...
2.74
KB
-rw-r--r--
views_plugin_localization_none...
607
B
-rw-r--r--
views_plugin_pager.inc
5.15
KB
-rw-r--r--
views_plugin_pager_full.inc
15.51
KB
-rw-r--r--
views_plugin_pager_mini.inc
2.11
KB
-rw-r--r--
views_plugin_pager_none.inc
1.77
KB
-rw-r--r--
views_plugin_pager_some.inc
1.84
KB
-rw-r--r--
views_plugin_query.inc
4.26
KB
-rw-r--r--
views_plugin_query_default.inc
54.4
KB
-rw-r--r--
views_plugin_row.inc
4.37
KB
-rw-r--r--
views_plugin_row_fields.inc
3.12
KB
-rw-r--r--
views_plugin_row_rss_fields.in...
6.81
KB
-rw-r--r--
views_plugin_style.inc
19.4
KB
-rw-r--r--
views_plugin_style_default.inc
454
B
-rw-r--r--
views_plugin_style_grid.inc
2.37
KB
-rw-r--r--
views_plugin_style_jump_menu.i...
5.99
KB
-rw-r--r--
views_plugin_style_list.inc
1.4
KB
-rw-r--r--
views_plugin_style_mapping.inc
3.9
KB
-rw-r--r--
views_plugin_style_rss.inc
3.17
KB
-rw-r--r--
views_plugin_style_summary.inc
2.29
KB
-rw-r--r--
views_plugin_style_summary_jum...
5.09
KB
-rw-r--r--
views_plugin_style_summary_unf...
894
B
-rw-r--r--
views_plugin_style_table.inc
10.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : views_plugin_pager.inc
<?php /** * @file * Definition of views_plugin_pager. */ /** * @defgroup views_pager_plugins Views pager plugins * @{ * @todo. * * @see hook_views_plugins() */ /** * The base plugin to handle pager. */ class views_plugin_pager extends views_plugin { var $current_page = NULL; var $total_items = 0; /** * Initialize the plugin. * * @param $view * The view object. * @param $display * The display handler. */ function init(&$view, &$display, $options = array()) { $this->view = &$view; $this->display = &$display; $this->unpack_options($this->options, $options); } /** * Get how many items per page this pager will display. * * All but the leanest pagers should probably return a value here, so * most pagers will not need to override this method. */ function get_items_per_page() { return isset($this->options['items_per_page']) ? $this->options['items_per_page'] : 0; } /** * Set how many items per page this pager will display. * * This is mostly used for things that will override the value. */ function set_items_per_page($items) { $this->options['items_per_page'] = $items; } /** * Get the page offset, or how many items to skip. * * Even pagers that don't actually page can skip items at the beginning, * so few pagers will need to override this method. */ function get_offset() { return isset($this->options['offset']) ? $this->options['offset'] : 0; } /** * Set the page offset, or how many items to skip. */ function set_offset($offset) { $this->options['offset'] = $offset; } /** * Get the current page. * * If NULL, we do not know what the current page is. */ function get_current_page() { return $this->current_page; } /** * Set the current page. * * @param $number * If provided, the page number will be set to this. If NOT provided, * the page number will be set from the global page array. */ function set_current_page($number = NULL) { if (!is_numeric($number) || $number < 0) { $number = 0; } $this->current_page = $number; } /** * Get the total number of items. * * If NULL, we do not yet know what the total number of items are. */ function get_total_items() { return $this->total_items; } /** * Get the pager id, if it exists */ function get_pager_id() { return !empty($this->options['id']) ? $this->options['id'] : 0; } /** * Provide the default form form for validating options */ function options_validate(&$form, &$form_state) { } /** * Provide the default form form for submitting options */ function options_submit(&$form, &$form_state) { } /** * Return a string to display as the clickable title for the * pager plugin. */ function summary_title() { return t('Unknown'); } /** * Determine if this pager actually uses a pager. * * Only a couple of very specific pagers will set this to false. */ function use_pager() { return TRUE; } /** * Determine if a pager needs a count query. * * If a pager needs a count query, a simple query */ function use_count_query() { return TRUE; } /** * Execute the count query, which will be done just prior to the query * itself being executed. */ function execute_count_query(&$count_query) { $this->total_items = $count_query->execute()->fetchField(); if (!empty($this->options['offset'])) { $this->total_items -= $this->options['offset']; } $this->update_page_info(); return $this->total_items; } /** * If there are pagers that need global values set, this method can * be used to set them. It will be called when the count query is run. */ function update_page_info() { } /** * Modify the query for paging * * This is called during the build phase and can directly modify the query. */ function query() { } /** * Perform any needed actions just prior to the query executing. */ function pre_execute(&$query) { } /** * Perform any needed actions just after the query executing. */ function post_execute(&$result) { } /** * Perform any needed actions just before rendering. */ function pre_render(&$result) { } /** * Render the pager. * * Called during the view render process, this will render the * pager. * * @param $input * Any extra GET parameters that should be retained, such as exposed * input. */ function render($input) { } /** * Determine if there are more records available. * * This is primarily used to control the display of a more link. */ function has_more_records() { return $this->get_items_per_page() && $this->total_items > (intval($this->current_page) + 1) * $this->get_items_per_page(); } function exposed_form_alter(&$form, &$form_state) { } function exposed_form_validate(&$form, &$form_state) { } function exposed_form_submit(&$form, &$form_state, &$exclude) { } function uses_exposed() { return FALSE; } function items_per_page_exposed() { return FALSE; } function offset_exposed() { return FALSE; } } /** * @} */
Close