| settings.php |
|
1 <?php
2 /* 3 +----------------------------------------------------------------+ 4 | | 5 | GaMerZ File Explorer Version 1.20 | 6 | Copyright (c) 2004-2008 Lester "GaMerZ" Chan | 7 | | 8 | File Written By: | 9 | - Lester "GaMerZ" Chan | 10 | - http://lesterchan.net | 11 | | 12 | File Information: | 13 | - Settings | 14 | - settings.php | 15 | | 16 +----------------------------------------------------------------+ 17 */ 18 19 20 ### What Files Not To Show In The List 21 $ignore_files = array('.htaccess', 'index.php', 'view.php', 'config.php', 'functions.php', 'search.php', 'settings.php'); 22 23 ### What Extentsions Not To Show In The List 24 // Example $ignore_ext = array('gif', 'jpg', 'txt'); 25 $ignore_ext = array(); 26 27 ### What Folders Not To Show In The List 28 // Example $ignore_folders = array('desktop', 'test', 'test2'); 29 $ignore_folders = array('resources', 'cgi-bin'); 30 31 ### File Extension To Be Parsed As Text 32 $text_ext = array('htm', 'html', 'php', 'txt', 'css', 'js'); 33 34 ### File Extension To Be Parsed As Image 35 $image_ext = array('jpg', 'jpeg', 'gif', 'png', 'bmp'); 36 37 ### File Extensions Description 38 $extensions = array( 39 'ai' => array('Adobe Illustrator Artwork', 'adobe_ai.gif'), 40 'avi' => array('AVI Movie', 'movie.gif'), 41 'bmp' => array('Bitmap Image', 'image_bmp.gif'), 42 'css' => array('Cascading Style Sheet Document', 'text.gif'), 43 'doc' => array('Microsoft Word Document', 'ms_doc.gif'), 44 'exe' => array('Application', 'application.gif'), 45 'fla' => array('Flash Document', 'macromedia_fla.gif'), 46 'gif' => array('GIF Image', 'image_gif.gif'), 47 'htm' => array('HTML Document', 'text_html.gif'), 48 'html' => array('HTML Document', 'text_html.gif'), 49 'ico' => array('Icon', 'image_ico.gif'), 50 'jpg' => array('JPEG Image', 'image_jpg.gif'), 51 'js' => array('JScript Script File', 'text.gif'), 52 'mdb' => array('Microsoft Access Database', 'ms_mdb.gif'), 53 'mid' => array('MIDI Music', 'sound.gif'), 54 'mov' => array('QuickTime Video Clip','movie_mov.gif'), 55 'mp3' => array('MPEG Audio Layer 3','sound.gif'), 56 'mpeg' => array('MPEG Movie','movie.gif'), 57 'mpg' => array('MPEG Movie','movie.gif'), 58 'msi' => array('Windows Installer Package','ms_msi.gif'), 59 'pdf' => array('Adobe Acrobat Document','adobe_pdf.gif'), 60 'php' => array('PHP File','text.gif'), 61 'png' => array('PNG Image','image_png.gif'), 62 'ppt' => array('Microsoft PowerPoint Presentation','ms_ppt.gif'), 63 'psd' => array('Adobe Photoshop Image', 'adobe_psd.gif'), 64 'swf' => array('Flash Movie', 'macromedia_swf.gif'), 65 'tif' => array('Tagged Image Format File','image_tif.gif'), 66 'txt' => array('Text Document','text.gif'), 67 'ra' => array('Real Media Audio', 'sound_ra.gif'), 68 'rar' => array('RAR Compressed Archive', 'zip.gif'), 69 'rm' => array('Real Media Video', 'movie_rm.gif'), 70 'w3x' => array('Warcraft III Expansion Scenario File', 'warcraft_w3x.gif'), 71 'wav' => array('Waveform Sound', 'sound.gif'), 72 'wma' => array('Windows Media Audio File', 'sound_wma.gif'), 73 'wmv' => array('Windows Media Video File', 'movie_wmv.gif'), 74 'xls' => array('Microsoft Excel Worksheet', 'ms_xls.gif'), 75 'zip' => array('Zip Compressed Archive', 'zip.gif'), 76 ); 77 78 ### GaMerZ File Explorer Version (Please Do Not Edit This) 79 $gfe_version = '1.20'; 80 ?> |
| 80 Lines | Download 'settings.php' | 3.6KB |