<?php //================================================================= // AdFreely -Ad Board script- // Copyright (c) phpkobo.com ( http://www.phpkobo.com/ ) // Email : hide@address.com // ID : AF201_206 // // This software is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 of the // License. // // [Installation Guide] // http://www.phpkobo.com/doc.php?d=install&p=AF201_206 // //================================================================= //-- User Type define( 'UT_GUEST', 'G' ); define( 'UT_MEMBER', 'M' ); define( 'UT_STAFF', 'S' ); //-- Root User define( 'ROOT_USER_ID', 1001 ); //-- Group define( 'GROUP_ADMIN', 1001 ); define( 'GROUP_STAFF', 1002 ); //-- String define( 'CRLF', "\r\n" ); //-- Default Search Box Size define( 'SB_Size', 15 ); //-- Default Select Caption define( 'STR_DEF_SELECT_CAPTION', '*' ); //---------------------------------------------------------------- // END OF FILE //---------------------------------------------------------------- ?>