!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

E:\xampp\xampp\htdocs\htdocs\drupal\themes\garland\   drwxrwxrwx
Free 7.26 GB of 239.26 GB (3.04%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     template.php (2.49 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// $Id: template.php,v 1.16 2007/10/11 09:51:29 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>';
  }
}

/**
 * Allow themable wrapping of all comments.
 */
function phptemplate_comment_wrapper($content$node) {
  if (!
$content || $node->type == 'forum') {
    return 
'<div id="comments">'$content .'</div>';
  }
  else {
    return 
'<div id="comments"><h2 class="comments">'t('Comments') .'</h2>'$content .'</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);
  }
}

/**
 * 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();
}

function 
phptemplate_comment_submitted($comment) {
  return 
t('!datetime — !username',
    array(
      
'!username' => theme('username'$comment),
      
'!datetime' => format_date($comment->timestamp)
    ));
}

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 (
defined('LANGUAGE_RTL') && $language->direction == LANGUAGE_RTL) {
    
$iecss .= '<style type="text/css" media="all">@import "'base_path() . path_to_theme() .'/fix-ie-rtl.css";</style>';
  }

  return 
$iecss;
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0156 ]--