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.116.49.143
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_field_field.inc
<?php /** * @file * Contains the entity_views_handler_field_field class. */ /** * A handler to provide proper displays for Field API fields. * * Overrides the default Views handler to retrieve the data from an entity via * data selection. * * 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_field_field extends views_handler_field_field { /** * Stores the entity type of the result entities. */ public $entity_type; /** * Stores the result entities' metadata wrappers. */ public $wrappers = array(); /** * The entity for which this field is currently rendered. */ public $entity; /** * Return TRUE if the user has access to view this field. */ public function access() { return field_access('view', $this->field_info, $this->definition['entity type']); } /** * Overridden to add the field for the entity ID (if necessary). */ public function query($use_groupby = FALSE) { EntityFieldHandlerHelper::query($this); } /** * Adds a click-sort to the query. */ public function click_sort($order) { EntityFieldHandlerHelper::click_sort($this, $order); } /** * Override so it doesn't do any harm (or, anything at all). */ public function post_execute(&$values) { } /** * Load the entities for all rows that are about to be displayed. */ public function pre_render(&$values) { parent::pre_render($values); EntityFieldHandlerHelper::pre_render($this, $values, TRUE); } /** * Overridden to get the items our way. */ public function get_items($values) { $items = array(); // Set the entity type for the parent handler. $values->_field_data[$this->field_alias]['entity_type'] = $this->entity_type; // We need special handling for lists of entities as the base. $entities = EntityFieldHandlerHelper::get_value($this, $values, 'entity object'); if (!is_array($entities)) { $entities = $entities ? array($entities) : array(); } foreach ($entities as $entity) { // Only try to render the field if it is even present on this bundle. // Otherwise, field_view_field() will trigger a fatal. list (, , $bundle) = entity_extract_ids($this->entity_type, $entity); if (field_info_instance($this->entity_type, $this->definition['field_name'], $bundle)) { // Set the currently rendered entity. $values->_field_data[$this->field_alias]['entity'] = $entity; $items = array_merge($items, $this->set_items($values, $this->view->row_index)); } } return $items; } /** * Overridden to force displaying multiple values in a single row. */ function multiple_options_form(&$form, &$form_state) { parent::multiple_options_form($form, $form_state); $form['group_rows']['#default_value'] = TRUE; $form['group_rows']['#disabled'] = TRUE; } }
Close