Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
themes /
garland /
Delete
Unzip
Name
Size
Permission
Date
Action
color
[ DIR ]
drwxr-sr-x
2010-08-25 04:50
images
[ DIR ]
drwxr-sr-x
2010-08-25 04:50
minnelli
[ DIR ]
drwxr-sr-x
2010-08-25 04:50
block.tpl.php
304
B
-rw-r--r--
2014-12-11 05:46
comment.tpl.php
773
B
-rw-r--r--
2014-12-11 05:46
fix-ie-rtl.css
1.2
KB
-rw-r--r--
2014-12-11 05:46
fix-ie.css
1.39
KB
-rw-r--r--
2014-12-11 05:46
garland.info
338
B
-rw-r--r--
2014-12-11 05:46
inc_scroller.htm
2.49
KB
-rw-r--r--
2010-08-25 04:50
logo.png
5.27
KB
-rw-r--r--
2014-12-11 05:46
maintenance-page.tpl.php
2.93
KB
-rw-r--r--
2014-12-11 05:46
node.tpl.php
795
B
-rw-r--r--
2014-12-11 05:46
page.tpl.php
3.56
KB
-rw-r--r--
2014-12-11 05:46
print.css
1.16
KB
-rw-r--r--
2014-12-11 05:46
screenshot.png
6.48
KB
-rw-r--r--
2014-12-11 05:46
style-rtl.css
4.5
KB
-rw-r--r--
2014-12-11 05:46
style.css
18.34
KB
-rw-r--r--
2014-12-11 05:46
template.php
2.5
KB
-rw-r--r--
2014-12-11 05:46
uwpscroller.swf
84.37
KB
-rw-r--r--
2010-08-25 04:50
Save
Rename
<?php /** * Sets the body-tag class attribute. * * Adds 'sidebar-left', 'sidebar-right' or 'sidebars' classes as needed. */ function phptemplate_body_class($left, $right) { if ($left != '' && $right != '') { $class = 'sidebars'; } else { if ($left != '') { $class = 'sidebar-left'; } if ($right != '') { $class = 'sidebar-right'; } } if (isset($class)) { print ' class="'. $class .'"'; } } /** * Return a themed breadcrumb trail. * * @param $breadcrumb * An array containing the breadcrumb links. * @return a string containing the breadcrumb output. */ function phptemplate_breadcrumb($breadcrumb) { if (!empty($breadcrumb)) { return '<div class="breadcrumb">'. implode(' › ', $breadcrumb) .'</div>'; } } /** * Override or insert PHPTemplate variables into the templates. */ function phptemplate_preprocess_page(&$vars) { $vars['tabs2'] = menu_secondary_local_tasks(); // Hook into color.module if (module_exists('color')) { _color_page_alter($vars); } } /** * Add a "Comments" heading above comments except on forum pages. */ function garland_preprocess_comment_wrapper(&$vars) { if ($vars['content'] && $vars['node']->type != 'forum') { $vars['content'] = '<h2 class="comments">'. t('Comments') .'</h2>'. $vars['content']; } } /** * Returns the rendered local tasks. The default implementation renders * them as tabs. Overridden to split the secondary tasks. * * @ingroup themeable */ function phptemplate_menu_local_tasks() { return menu_primary_local_tasks(); } /** * Returns the themed submitted-by string for the comment. */ function phptemplate_comment_submitted($comment) { return t('!datetime — !username', array( '!username' => theme('username', $comment), '!datetime' => format_date($comment->timestamp) )); } /** * Returns the themed submitted-by string for the node. */ function phptemplate_node_submitted($node) { return t('!datetime — !username', array( '!username' => theme('username', $node), '!datetime' => format_date($node->created), )); } /** * Generates IE CSS links for LTR and RTL languages. */ function phptemplate_get_ie_styles() { global $language; $iecss = '<link type="text/css" rel="stylesheet" media="all" href="'. base_path() . path_to_theme() .'/fix-ie.css" />'; if ($language->direction == LANGUAGE_RTL) { $iecss .= '<style type="text/css" media="all">@import "'. base_path() . path_to_theme() .'/fix-ie-rtl.css";</style>'; } return $iecss; }