|
Access: Admin
Total posts: 1069
Status: Offline
| |
|
N-13 News 3.0
|
|
This version is outdated, please download the latest version here
Features
- New user groups
Now you have the ability to create your own user groups. This gives you complete control over which sections of the script users can access.
You can also define which posts that user can access
- Their own
- Their own and all users with an access level below them
- All posts
- Private messaging
Now users can communicate with each other via the private messaging system
- BBCode
BBCode has been added to both adding/editing news and private messaging
- Integrating news is now easier than ever. If you want to show a certain category when including your news simply add
Code:
<?php $cat = "Category name"; include 'news/index.php'; ?>
This will show all the posts within that category. If a category isn't specified the default category is displayed. If you want to display all categories change cat to all, $cat = "all";
Code:
<?php $author = "Author name"; include 'news/index.php'; ?>
This will display all posts for the specified author, if no author is specified all authors posts are shown.
Code:
<?php $template = "Template name"; include 'news/index.php'; ?>
This will use a certain template, if no template is specified whichever template is selected as default will be used.
Code:
<?php $template = "Template name"; $author = "Author name"; $cat = "Category name": include 'news/index.php'; ?>
You can always mix and match the above methods.
- Restructuring templates
Now you have the ability to completely restructure how each news element is displayed, for example if you wanted the news pagintation to be displayed above as well as below news posts this is now possible.
- Quite a few other fixes and changes for a complete list visit this page
|
| 03:18pm 12th Apr 2008 | Last edited by Chris at 11:19pm 26th Jun 2010 Reason: changed download location to google code |