mirror of
https://github.com/e107inc/e107.git
synced 2025-02-24 00:34:13 +01:00
61 lines
2.2 KiB
PHP
61 lines
2.2 KiB
PHP
<?php
|
|
/*
|
|
+ ----------------------------------------------------------------------------+
|
|
| e107 website system
|
|
|
|
|
| ©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).
|
|
|
|
|
| $Source: /cvs_backup/e107_0.8/e107_languages/English/admin/help/newspost.php,v $
|
|
| $Revision: 1.2 $
|
|
| $Date: 2008-06-16 21:10:09 $
|
|
| $Author: e107steved $
|
|
+----------------------------------------------------------------------------+
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
$caption = "Newspost Help";
|
|
if (e_QUERY) list($action,$junk) = explode('.',e_QUERY); else $action = 'list';
|
|
switch ($action)
|
|
{
|
|
case 'create' :
|
|
$text = "<b>General</b><br />
|
|
Body will be displayed on the main page; extended will be readable by clicking a 'Read More' link.
|
|
<br />
|
|
<br />
|
|
<b>Show title only</b>
|
|
<br />
|
|
Enable this to show the news title only on front page, with clickable link to full story.
|
|
<br /><br />
|
|
<b>Activation</b>
|
|
<br />
|
|
If you set a start and/or end date your news item will only be displayed between these dates.
|
|
";
|
|
break;
|
|
case 'cat' :
|
|
$text = "You can separate your news items into different categories, and allow visitors to display only the news items in those categories. <br /><br />Upload your news icon images into either ".e_THEME."-yourtheme-/images/ or themes/shared/newsicons/.";
|
|
break;
|
|
case 'pref' :
|
|
$text = 'Set various news-related options<br /><br />
|
|
<b>News Category Columns</b><br />
|
|
Requires theme support to be selectable<br /><br />
|
|
<b>News posts to display per page</b><br />
|
|
For the main news page; displays items in unextended format.<br /><br />
|
|
<b>News posts to display in archive</b><br />
|
|
Sets the number of news posts which are displayed as title only on each news page (included in the previous total).<br /><br />
|
|
<b>Enable WYSIWYG editor</b><br />
|
|
Requires that users who can submit news can also post HTML.
|
|
';
|
|
break;
|
|
case 'list' :
|
|
default :
|
|
$text = 'List of all news items. To edit or delete, click on one of the icons in the \'options\' column. To view the item, click
|
|
on the title.';
|
|
}
|
|
$ns -> tablerender($caption, $text);
|
|
?>
|