Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/news/tmp/install_53215b1643824/views/ |
Upload File : |
<?php /** * @author: GavickPro * @copyright: 2008 **/ // no direct access defined('_JEXEC') or die('Restricted access'); // JURI $uri =& JURI::getInstance(); ?> <h3 style="text-align: center;color: #787878;"><?php echo $LANG->SlideSettings; ?></h3> <table class="adminlist"> <thead> <tr> <th>Property</th> <th>Value</th> </tr> </thead> <tbody> <tr> <td><?php echo $LANG->SlideName; ?></td> <td><?php echo $name; ?></td> </tr> <tr> <td><?php echo $LANG->SlideAccess; ?></td> <td><?php switch($access) { case 0 : echo '<strong><font color="green">'.$LANG->SLIDE_PUBLIC.'</font></strong>';break; case 1 : echo '<strong><font color="red">'.$LANG->SLIDE_REGISTRED.'</font></strong>';break; case 2 : echo '<strong><font color="gray">'.$LANG->SLIDE_SPECIAL.'</font></strong>';break; } ?></td> </tr> <tr> <td><?php echo $LANG->SlidePreview; ?></td> <td> <a href="<?php echo $uri->root().'components/com_gk2_photoslide/images/thumbm/'.$file; ?>" onclick="new Event(event).stop();Lightbox.anchors.push(this);Lightbox.show(this.href, this.title)"> <?php echo $LANG->SlideImage; ?> </a>, <a href="<?php echo $uri->root().'components/com_gk2_photoslide/images/thumbs/'.$file; ?>" onclick="new Event(event).stop();Lightbox.anchors.push(this);Lightbox.show(this.href, this.title)"> <?php echo $LANG->SlideThumb; ?> </a> </td> </tr> <tr> <td><?php echo $LANG->ImageSize; ?></td> <td><?php echo $mediumThumbX.' x '.$mediumThumbY.'px'; ?></td> </tr> <tr> <td><?php echo $LANG->ThumbnailSize; ?></td> <td><?php echo $smallThumbX.' x '.$smallThumbY.'px'; ?></td> </tr> <tr> <td><?php echo $LANG->SlideStretch; ?></td> <td><?php echo ($stretch == 0) ? $LANG->NO : $LANG->YES; ?></td> </tr>