# @package PHPLinkDirectory # @version 3.3.0 # ################################################################################ */ require_once 'init.php'; $path = array (); $path[] = array ('ID' => '0', 'TITLE' => _L(DIRECTORY_TITLE) , 'TITLE_URL' => DOC_ROOT, 'DESCRIPTION' => SITE_DESC); $path[] = array ('ID' => '0', 'TITLE' => _L('Submission Rules'), 'TITLE_URL' => '', 'DESCRIPTION' => _L('Submission Rules')); $tpl->assign($data); $tpl->assign('path', $path); $tpl->assign('SITE_NAME' , SITE_NAME); $rules = SUBMIT_TERMS; $tpl->assign('rules', $rules); //Compress output for faster loading if (COMPRESS_OUTPUT == 1) $tpl->load_filter('output', 'CompressOutput'); //Clean whitespace $tpl->load_filter('output', 'trimwhitespace'); //Make output echo $tpl->fetch('rules.tpl'); ?>