<?php

################################################
# EVILCMS FLATFILE RECODE - 100% FUNCTIONALITY #
################################################

Session_Start();

If($CMS->LoggedIn):
	If($_USER['rank'] == "admin") {
		Echo '
		The article system is based on the MS-INI configuration file.<br />
		Here is a example article:<br />
		<pre style="font-size: 11px;">
[0] # The ID of the article.
Title = "ARTICLE TITLE"
Type = "Announcement" # The type of article.
Category = "Announcements" # The article category.
Date = "12-12-2012 12:12"
Content = "THIS IS THE ARTICLE CONTENT"
		</pre>
		The ID has to be 1 more than the article before, so if this the article before was ID 1 this is 2.<br />
		You can also use the preset variables %USERNAME% and %HOTEL_NAME% in your articles to make them more personal.<br />
		In Housekeeping, you add your article under the others, 9000 articles can be made before it fucks up.<br />
		';
	}
Endif;