Add list of reserved words #763

This commit is contained in:
Kijin Sung 2017-03-23 19:43:49 +09:00
parent fae2a05b6f
commit 97047d1279
6 changed files with 83 additions and 7 deletions

View file

@ -0,0 +1,28 @@
<?php
/**
* Reserved words for Rhymix
*
* Copyright (c) Rhymix Developers and Contributors
*/
return array(
'mid' => true,
'vid' => true,
'act' => true,
'admin' => true,
'module' => true,
'module_srl' => true,
'member_srl' => true,
'menu_srl' => true,
'layout_srl' => true,
'mlayout_srl' => true,
'document_srl' => true,
'comment_srl' => true,
'file_srl' => true,
'regdate' => true,
'list_order' => true,
'sort_index' => true,
'order_type' => true,
'search_target' => true,
'search_keyword' => true,
);