!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\modules\slideshow_creator\   drwxrwxrwx
Free 7.26 GB of 239.26 GB (3.03%)
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:     slideshow_creator.admin.inc (2.54 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// $Id: slideshow_creator.admin.inc,v 1.1.2.4 2008/07/02 02:27:44 brmassa Exp $
/**
 * @author Bruno Massa http://drupal.org/user/67164
 * @file
 * Create true slideshows using any image over internet with many other features.
 */

/**
 * Module settings page. Users can set the default layout
 * of their charts.
 *
 * @ingroup form
 */
function _slideshow_creator_admin() {
  
// Get the default settings for all slideshows
  
$settings variable_get('slideshow_creator_settings', array());

  
// Build the form
  
$form['height'] = array(
    
'#default_value'  => empty($settings['#height']) ? 400 $settings['#height'],
    
'#description'    => t('The slideshow height, in pixels.'),
    
'#title'          => t('Height'),
    
'#type'           => 'textfield',
  );
  
$form['width'] = array(
    
'#default_value'  => empty($settings['#width']) ? 400 $settings['#width'],
    
'#description'    => t('The slideshow width, in pixels.'),
    
'#title'          => t('Width'),
    
'#type'           => 'textfield',
  );
  
$form['layout'] = array(
    
'#default_value'  => empty($settings['#layout']) ? 'default' $settings['#layout'],
    
'#description'    => t('The slideshow layout'),
    
'#options'        => array(
      
'default' => t('Default'),
      
'reverse' => t('Reverse'),
      
'top'     => t('Top'),
      
'bottom'  => t('Bottom'),
    ),
    
'#title'          => t('Layout'),
    
'#type'           => 'select',
  );
  
$form['current_slide_string'] = array(
    
'#default_value'  => empty($settings['#current_slide_string']) ? 'Slide' $settings['#current_slide_string'],
    
'#description'    => t('The text to be displayed on the Current Slide part.'),
    
'#title'          => t('Current Slide String'),
    
'#type'           => 'textfield',
  );

  
// Submit button
  
$form['submit'] = array(
    
'#value'          => t('Save these settings'),
    
'#type'           => 'submit',
  );

  return 
$form;
}

/**
 * Module settings page. Users can set the default layout
 * of their charts.
 *
 * @ingroup form
 */
function _slideshow_creator_admin_submit(&$from, &$form_state) {
  
$settings $form_state['values'];
  unset(
$settings['submit']);
  unset(
$settings['form_id']);
  unset(
$settings['form_build_id']);
  unset(
$settings['form_token']);
  unset(
$settings['op']);

  
// Add a '#' in all field names
  
foreach ($settings as $index => $value) {
    
$settings["#$index"] = $value;
    unset(
$settings[$index]);
  }

  
// Save the data into database
  
variable_set('slideshow_creator_settings'$settings);

  
// Print a 'OK' message
  
drupal_set_message('Settings saved');
}

:: 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.0312 ]--