2009-01-11 02:59:10 +00:00
< ? php
/*
2009-11-17 13:27:14 +00:00
* e107 website system
*
2009-11-18 01:06:08 +00:00
* Copyright ( C ) 2008 - 2009 e107 Inc ( e107 . org )
2009-11-17 13:27:14 +00:00
* Released under the terms and conditions of the
* GNU General Public License ( http :// www . gnu . org / licenses / gpl . txt )
*
*
*
* $Source : / cvs_backup / e107_0 . 8 / e107_plugins / download / e_help . php , v $
2010-02-10 18:18:01 +00:00
* $Revision $
* $Date $
* $Author $
2009-11-17 13:27:14 +00:00
*/
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 ];
}
2012-12-08 13:52:05 +01:00
switch ( vartrue ( $action )) {
2009-02-11 21:41:54 +00:00
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 : {
2012-12-04 04:11:00 -08:00
/*
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> " ;
2012-12-04 04:11:00 -08:00
*/
2012-12-08 13:52:05 +01:00
$text = " " ;
2009-02-11 21:41:54 +00:00
}
}
$ns -> tablerender ( DOWLAN_HELP_1 , $text );
2009-01-11 02:59:10 +00:00
?>