1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

General cleanup

This commit is contained in:
CaMer0n
2012-08-10 19:30:43 +00:00
parent 2f788a86f5
commit d49c85f9f0
21 changed files with 258 additions and 240 deletions

View File

@@ -6,6 +6,9 @@
*
* Full SEF URLs support and the most risky one, almost the same as sef_noid, just working with rules only
*/
if (!defined('e107_INIT')){ exit; }
class core_news_sef_full_url extends eUrlConfig
{
public function config()

View File

@@ -6,6 +6,8 @@
*
* SEF URLs support, example of manually (rules-less) created/parsed urls
*/
if (!defined('e107_INIT')){ exit; }
class core_news_sef_noid_url extends eUrlConfig
{
public function config()

View File

@@ -9,6 +9,8 @@
* Generally, things are much more simpler...
*
*/
if (!defined('e107_INIT')){ exit; }
class core_news_sef_url extends eUrlConfig
{
public function config()

View File

@@ -8,6 +8,8 @@
* All possible config options added here - to be used as a reference.
* A good programming practice is to remove all non-used options.
*/
if (!defined('e107_INIT')){ exit; }
class core_news_url extends eUrlConfig
{
public function config()

View File

@@ -5,6 +5,8 @@
*
* Custom page routing config
*/
if (!defined('e107_INIT')){ exit; }
class core_page_sef_noid_url extends eUrlConfig
{
public function config()

View File

@@ -5,6 +5,8 @@
*
* Custom page routing config
*/
if (!defined('e107_INIT')){ exit; }
class core_page_sef_url extends eUrlConfig
{
public function config()

View File

@@ -5,6 +5,8 @@
*
* Custom page routing config
*/
if (!defined('e107_INIT')){ exit; }
class core_page_url extends eUrlConfig
{
public function config()

View File

@@ -5,6 +5,8 @@
*
* Search routing config
*/
if (!defined('e107_INIT')){ exit; }
class core_search_rewrite_url extends eUrlConfig
{
public function config()

View File

@@ -5,6 +5,8 @@
*
* Search routing config
*/
if (!defined('e107_INIT')){ exit; }
class core_search_url extends eUrlConfig
{
public function config()

View File

@@ -5,6 +5,8 @@
*
* System routing config
*/
if (!defined('e107_INIT')){ exit; }
class core_system_rewrite_url extends eUrlConfig
{
public function config()

View File

@@ -5,6 +5,8 @@
*
* System routing config
*/
if (!defined('e107_INIT')){ exit; }
class core_system_url extends eUrlConfig
{
public function config()

View File

@@ -5,6 +5,8 @@
*
* User routing config
*/
if (!defined('e107_INIT')){ exit; }
class core_user_rewrite_url extends eUrlConfig
{
public function config()

View File

@@ -5,6 +5,8 @@
*
* User routing config
*/
if (!defined('e107_INIT')){ exit; }
class core_user_url extends eUrlConfig
{
public function config()