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

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/home/jerryg/public_html/gallery2/modules/core/   drwxr-xr-x
Free 318.39 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     ItemEditMovie.inc (3.6 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 * Gallery - a web based photo album viewer and editor
 * Copyright (C) 2000-2007 Bharat Mediratta
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA  02110-1301, USA.
 */

/**
 * Plugin for editing Movies
 * @package GalleryCore
 * @subpackage UserInterface
 * @author Bharat Mediratta <bharat@menalto.com>
 * @version $Revision: 15513 $
 */
class ItemEditMovie extends ItemEditPlugin {

    
/**
     * @see ItemEditPlugin::handleRequest
     */
    
function handleRequest($form, &$item, &$preferred) {
    global 
$gallery;

    
$status null;
    
$error = array();

    
/* Figure out which command we're taking */
    
if (isset($form['action']['save'])) {

        
/* Missing values get set to 0 */
        
if (isset($form['width']) && $form['width'] < 0) {
        
$error[] = 'form[error][width][invalid]';
        } else {
        
$form['width'] = (int)$form['width'];
        }

        if (isset(
$form['height']) && $form['height'] < 0) {
        
$error[] = 'form[error][height][invalid]';
        } else {
        
$form['height'] = (int)$form['height'];
        }

        if (empty(
$error)) {
        list (
$ret$lock) = GalleryCoreApi::acquireWriteLock($item->getId());
        if (
$ret) {
            return array(
$retnullnullnull);
        }

        list (
$ret$item) = $item->refresh();
        if (
$ret) {
            
GalleryCoreApi::releaseLocks($lock);
            return array(
$retnullnullnull);
        }

        
$item->setWidth($form['width']);
        
$item->setHeight($form['height']);
        
$item->setSerialNumber($form['serialNumber']);
        
$ret $item->save();
        if (
$ret) {
            
GalleryCoreApi::releaseLocks($lock);
            return array(
$retnullnullnull);
        }

        
$ret GalleryCoreApi::releaseLocks($lock);
        if (
$ret) {
            return array(
$retnullnullnull);
        }

        
/* Prepare our status message */
        
list ($ret$module) = GalleryCoreApi::loadPlugin('module''core');
        if (
$ret) {
            return array(
$retnullnullnull);
        }

        
$status $module->translate('Changes saved successfully');
        }
    }

    return array(
null$error$statusfalse);
    }

    
/**
     * @see ItemEditPlugin::loadTemplate
     */
    
function loadTemplate(&$template, &$form$item$thumbnail) {
    global 
$gallery;

    if (
$form['formName'] != 'ItemEditMovie') {
        
/* First time around, load the form with item data */
        
$form['width'] = $item->getWidth();
        
$form['height'] = $item->getHeight();
        
$form['formName'] = 'ItemEditMovie';
    }

    
$ItemEditMovie = array();

    
$template->setVariable('ItemEditMovie'$ItemEditMovie);
    
$template->setVariable('controller''core.ItemEditMovie');
    return array(
null,
             
'modules/core/templates/ItemEditMovie.tpl''modules_core');
    }

    
/**
     * @see ItemEditPlugin::isSupported
     */
    
function isSupported($item$thumbnail) {
    return (
GalleryUtilities::isA($item'GalleryMovieItem'));
    }

    
/**
     * @see ItemEditPlugin::getTitle
     */
    
function getTitle() {
    list (
$ret$module) = GalleryCoreApi::loadPlugin('module''core');
    if (
$ret) {
        return array(
$retnull);
    }

    return array(
null$module->translate('Movie Size'));
    }
}
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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