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.15.15.31
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 /
modules /
[ HOME SHELL ]
Name
Size
Permission
Action
book.info.inc
890
B
-rw-r--r--
callbacks.inc
33.06
KB
-rw-r--r--
comment.info.inc
6.26
KB
-rw-r--r--
field.info.inc
7.16
KB
-rw-r--r--
locale.info.inc
1.43
KB
-rw-r--r--
node.info.inc
5.82
KB
-rw-r--r--
poll.info.inc
1.65
KB
-rw-r--r--
statistics.info.inc
1.32
KB
-rw-r--r--
system.info.inc
4.49
KB
-rw-r--r--
taxonomy.info.inc
4.27
KB
-rw-r--r--
user.info.inc
3.84
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : taxonomy.info.inc
<?php /** * @file * Provides info about the taxonomy entity. */ /** * Implements hook_entity_property_info() on top of taxonomy module. * * @see entity_entity_property_info() */ function entity_metadata_taxonomy_entity_property_info() { $info = array(); // Add meta-data about the basic taxonomy properties. $properties = &$info['taxonomy_term']['properties']; $properties['tid'] = array( 'label' => t("Term ID"), 'description' => t("The unique ID of the taxonomy term."), 'type' => 'integer', 'schema field' => 'tid', ); $properties['name'] = array( 'label' => t("Name"), 'description' => t("The name of the taxonomy term."), 'setter callback' => 'entity_property_verbatim_set', 'required' => TRUE, 'schema field' => 'name', ); $properties['description'] = array( 'label' => t("Description"), 'description' => t("The optional description of the taxonomy term."), 'sanitized' => TRUE, 'raw getter callback' => 'entity_property_verbatim_get', 'getter callback' => 'entity_metadata_taxonomy_term_get_properties', 'setter callback' => 'entity_property_verbatim_set', 'schema field' => 'description', ); $properties['weight'] = array( 'label' => t("Weight"), 'type' => 'integer', 'description' => t('The weight of the term, which is used for ordering terms during display.'), 'setter callback' => 'entity_property_verbatim_set', 'schema field' => 'weight', ); $properties['node_count'] = array( 'label' => t("Node count"), 'type' => 'integer', 'description' => t("The number of nodes tagged with the taxonomy term."), 'getter callback' => 'entity_metadata_taxonomy_term_get_properties', 'computed' => TRUE, ); $properties['url'] = array( 'label' => t("URL"), 'description' => t("The URL of the taxonomy term."), 'getter callback' => 'entity_metadata_entity_get_properties', 'type' => 'uri', 'computed' => TRUE, ); $properties['vocabulary'] = array( 'label' => t("Vocabulary"), 'description' => t("The vocabulary the taxonomy term belongs to."), 'setter callback' => 'entity_metadata_taxonomy_term_setter', 'type' => 'taxonomy_vocabulary', 'required' => TRUE, 'schema field' => 'vid', ); $properties['parent'] = array( 'label' => t("Parent terms"), 'description' => t("The parent terms of the taxonomy term."), 'getter callback' => 'entity_metadata_taxonomy_term_get_properties', 'setter callback' => 'entity_metadata_taxonomy_term_setter', 'type' => 'list<taxonomy_term>', ); $properties['parents_all'] = array( 'label' => t("All parent terms"), 'description' => t("Ancestors of the term, i.e. parent of all above hierarchy levels."), 'getter callback' => 'entity_metadata_taxonomy_term_get_properties', 'type' => 'list<taxonomy_term>', 'computed' => TRUE, ); // Add meta-data about the basic vocabulary properties. $properties = &$info['taxonomy_vocabulary']['properties']; // Taxonomy vocabulary related variables. $properties['vid'] = array( 'label' => t("Vocabulary ID"), 'description' => t("The unique ID of the taxonomy vocabulary."), 'type' => 'integer', 'schema field' => 'vid', ); $properties['name'] = array( 'label' => t("Name"), 'description' => t("The name of the taxonomy vocabulary."), 'setter callback' => 'entity_property_verbatim_set', 'required' => TRUE, 'schema field' => 'name', ); $properties['machine_name'] = array( 'label' => t("Machine name"), 'type' => 'token', 'description' => t("The machine name of the taxonomy vocabulary."), 'setter callback' => 'entity_property_verbatim_set', 'required' => TRUE, 'schema field' => 'machine_name', ); $properties['description'] = array( 'label' => t("Description"), 'description' => t("The optional description of the taxonomy vocabulary."), 'setter callback' => 'entity_property_verbatim_set', 'sanitize' => 'filter_xss', 'schema field' => 'description', ); $properties['term_count'] = array( 'label' => t("Term count"), 'type' => 'integer', 'description' => t("The number of terms belonging to the taxonomy vocabulary."), 'getter callback' => 'entity_metadata_taxonomy_vocabulary_get_properties', 'computed' => TRUE, ); return $info; }
Close