2009-01-11 02:59:10 +00:00
< ? php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| <EFBFBD> Steve Dunstan 2001 - 2002
| http :// e107 . org
| jalist @ e107 . org
|
| Released under the terms and conditions of the
| GNU General Public License ( http :// gnu . org ) .
|
2009-07-19 09:32:24 +00:00
| $Source : / cvs_backup / e107_0 . 8 / e107_plugins / download / e_help . php , v $
2009-11-12 21:46:14 +00:00
| $Revision : 1.2 $
| $Date : 2009 - 11 - 12 21 : 46 : 13 $
| $Author : bugrain $
2009-01-11 02:59:10 +00:00
+----------------------------------------------------------------------------+
*/
if ( ! defined ( 'e107_INIT' )) { exit ; }
2009-02-11 21:41:54 +00:00
if ( e_QUERY )
{
$tmp = explode ( " . " , e_QUERY );
$action = $tmp [ 0 ];
}
switch ( $action ) {
case 'create' : {
$text = DOWLAN_HELP_2 ;
break ;
}
case 'cat' : {
$text = DOWLAN_HELP_3 ;
break ;
}
case 'opt' : {
$text = DOWLAN_HELP_4 ;
break ;
}
case 'maint' : {
2009-07-15 00:15:01 +00:00
$text = DOWLAN_HELP_5 ;
2009-02-11 21:41:54 +00:00
break ;
}
case 'limits' : {
$text = DOWLAN_HELP_6 ;
break ;
}
case 'mirror' : {
$text = DOWLAN_HELP_7 ;
break ;
}
2009-11-12 21:46:14 +00:00
case 'ulist' : {
$text = DOWLAN_HELP_8 ;
break ;
}
case 'utype' : {
$text = DOWLAN_HELP_9 ;
break ;
}
case 'uopt' : {
$text = DOWLAN_HELP_10 ;
break ;
}
2009-02-11 21:41:54 +00:00
default : {
2009-07-16 23:07:31 +00:00
$text = " <p>Please upload your files into the " . e_DOWNLOAD . " folder, your images into the " . e_FILE . " downloadimages folder and thumbnail images into the " . e_FILE . " downloadthumbs folder.</p>
< p > To submit a download , first create a parent , then create a category under that parent , you will then be able to make the download available .</ p > " ;
$text .= " <div> " ;
$text .= DOWLAN_21 . " <br/> " ;
$text .= " <img src=' " . ADMIN_TRUE_ICON_PATH . " ' title=' " . DOWLAN_123 . " ' alt='' style='cursor:help'/> " . DOWLAN_123 . " <br/> " ;
$text .= " <img src=' " . ADMIN_WARNING_ICON_PATH . " ' title=' " . DOWLAN_124 . " ' alt='' style='cursor:help'/> " . DOWLAN_124 . " <br/> " ;
$text .= " <img src=' " . ADMIN_FALSE_ICON_PATH . " ' title=' " . DOWLAN_122 . " ' alt='' style='cursor:help'/> " . DOWLAN_122 . " <br/> " ;
$text .= " </div> " ;
2009-02-11 21:41:54 +00:00
}
}
$ns -> tablerender ( DOWLAN_HELP_1 , $text );
2009-01-11 02:59:10 +00:00
?>