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 /
sites /
all /
themes /
cesa /
Delete
Unzip
Name
Size
Permission
Date
Action
color
[ DIR ]
drwxr-sr-x
2010-09-20 16:04
images
[ DIR ]
drwxr-sr-x
2010-09-20 16:04
minnelli
[ DIR ]
drwxr-sr-x
2010-09-20 16:04
block-block-1.tpl.php
382
B
-rw-r--r--
2018-10-22 11:08
block.tpl.php
363
B
-rw-r--r--
2011-02-17 07:17
cesa.info
565
B
-rw-r--r--
2011-02-17 07:17
comment.tpl.php
835
B
-rw-r--r--
2011-02-17 07:17
fix-ie-rtl.css
1.32
KB
-rw-r--r--
2011-02-17 07:17
fix-ie.css
1.52
KB
-rw-r--r--
2011-02-17 07:17
inc_scroller.htm
3.53
KB
-rw-r--r--
2014-08-13 09:18
logo.png
5.27
KB
-rw-r--r--
2011-02-17 07:17
maintenance-page.tpl.php
3
KB
-rw-r--r--
2011-02-17 07:17
node.tpl.php
861
B
-rw-r--r--
2011-02-17 07:17
page.tpl.php
7.53
KB
-rw-r--r--
2019-08-20 11:27
page.tpl.php.bak
4.92
KB
-rw-r--r--
2011-11-08 12:07
print.css
1.27
KB
-rw-r--r--
2011-02-17 07:17
screenshot.png
6.48
KB
-rw-r--r--
2011-02-17 07:17
style-rtl.css
4.85
KB
-rw-r--r--
2011-02-17 07:17
style.css
19.65
KB
-rw-r--r--
2011-02-17 07:17
template.php
2.56
KB
-rw-r--r--
2011-02-17 07:17
uwpscroller.swf
84.37
KB
-rw-r--r--
2011-02-17 07:17
Save
Rename
<?php // $Id: template.php,v 1.16.2.3 2010/05/11 09:41:22 goba Exp $ /** * 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; }