Server : nginx/1.22.1
System : Linux iZwz9daxib3w3i063fw434Z 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64
User : www ( 1000)
PHP Version : 5.6.40
Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Directory :  /www/wwwroot/www.jkmold.com/phpcms/modules/formguide/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : /www/wwwroot/www.jkmold.com/phpcms/modules/formguide/index.php
<?php

defined('IN_PHPCMS') or exit('No permission resources.');

define('CACHE_MODEL_PATH',PHPCMS_PATH.'caches'.DIRECTORY_SEPARATOR.'caches_model'.DIRECTORY_SEPARATOR.'caches_data'.DIRECTORY_SEPARATOR);



class index {

	private $db, $m_db, $M;

	function __construct() {

		$this->db = pc_base::load_model('sitemodel_model');

		$this->m_db = pc_base::load_model('sitemodel_field_model');

		$this->M = new_html_special_chars(getcache('formguide', 'commons'));

		$this->siteid = intval($_GET[siteid]) ? intval($_GET[siteid]) : get_siteid();

		$this->M = $this->M[$this->siteid];

	}

	

	/**

	 * 表单向导首页

	 */

	public function index() {

		$siteid = $this->siteid;

		$SEO = seo($this->siteid, '', L('formguide_list'));

		$page = max(intval($_GET['page']), 1);

		$r = $this->db->get_one(array('siteid'=>$this->siteid, 'type'=>3, 'disabled'=>0), 'COUNT(`modelid`) AS sum');

		$total = $r['sum'];

		$pages = pages($total, $page, 20);

		$offset = ($page-1)*20;

		$datas = $this->db->select(array('siteid'=>$this->siteid, 'type'=>3, 'disabled'=>0), 'modelid, name, addtime', $offset.',20', '`modelid` DESC');

		include template('formguide', 'index');

	}

	

	/**

	 * 表单展示

	 */

	public function show() {

		if (!isset($_GET['formid']) || empty($_GET['formid'])) {

			$_GET['action'] ? exit : showmessage(L('form_no_exist'), HTTP_REFERER);

		}

		$siteid = $_GET['siteid'] ? intval($_GET['siteid']) : 1;

		$formid = intval($_GET['formid']);

		$r = $this->db->get_one(array('modelid'=>$formid, 'siteid'=>$siteid, 'disabled'=>0), 'tablename, setting');

		if (!$r) {

			$_GET['action'] ? exit : showmessage(L('form_no_exist'), HTTP_REFERER);

		}

		$setting = string2array($r['setting']);

		if ($setting['enabletime']) {

			if ($setting['starttime']>SYS_TIME || ($setting['endtime']+3600*24)<SYS_TIME) {

				$_GET['action'] ? exit : showmessage(L('form_expired'), APP_PATH.'index.php?m=formguide&c=index&a=index');

			}

		}

		$userid = param::get_cookie('_userid');

		if ($setting['allowunreg']==0 && !$userid && $_GET['action']!='js') showmessage(L('please_login_in'), APP_PATH.'index.php?m=member&c=index&a=login&forward='.urlencode(HTTP_REFERER));

		if (isset($_POST['dosubmit'])) {

			$tablename = 'form_'.$r['tablename'];

			$this->m_db->change_table($tablename);

			

			$data = array();

			require CACHE_MODEL_PATH.'formguide_input.class.php';

			$formguide_input = new formguide_input($formid);

			$data = new_addslashes($_POST['info']);

			$data = new_html_special_chars($data);

			$data = $formguide_input->get($data);

			$data['userid'] = $userid;

			$data['username'] = param::get_cookie('_username');

			$data['datetime'] = SYS_TIME;

			$data['ip'] = ip();

			$dataid = $this->m_db->insert($data, true);

			if ($dataid) {

				if ($setting['sendmail']) {

					pc_base::load_sys_func('mail');

					$mails = explode(',', $setting['mails']);

					if (is_array($mails)) {

						foreach ($mails as $m) {

							sendmail($m, L('tips'), $this->M['mailmessage']);

						}

					}

				}

				$this->db->update(array('items'=>'+=1'), array('modelid'=>$formid, 'siteid'=>$this->siteid));

			}

			showmessage(L('thanks'), APP_PATH);

		} else {

			if ($setting['allowunreg']==0 && !$userid && $_GET['action']=='js') {

				$no_allowed = 1;

			}

			pc_base::load_sys_class('form', '', '');

			$f_info = $this->db->get_one(array('modelid'=>$formid, 'siteid'=>$this->siteid));

			extract($f_info);

			$tablename = 'form_'.$r['tablename'];

			$this->m_db->change_table($tablename);

			$ip = ip();

			$where = array();

			if ($userid) $where = array('userid'=>$userid);

			else $where = array('ip'=>$ip);

			$re = $this->m_db->get_one($where, 'datetime');

			$setting = string2array($setting);

			if (($setting['allowmultisubmit']==0 && $re['datetime']) || ((SYS_TIME-$re['datetime'])<$this->M['interval']*60)) {

				$_GET['action'] ? exit : showmessage(L('had_participate'), APP_PATH.'index.php?m=formguide&c=index&a=index');

			}

			

			require CACHE_MODEL_PATH.'formguide_form.class.php';

			$formguide_form = new formguide_form($formid, $no_allowed);

			$forminfos_data = $formguide_form->get();

			$SEO = seo($this->siteid, L('formguide'), $name);

			if (isset($_GET['action']) && $_GET['action']=='js') {

				if(!function_exists('ob_gzhandler')) ob_clean();

				ob_start();

			}

			$template = ($_GET['action']=='js') ? $js_template : $show_template;

			include template('formguide', $template, $default_style);

			if (isset($_GET['action']) && $_GET['action']=='js') {

				$data=ob_get_contents();

				ob_clean();

				exit(format_js($data));

			}

		}

	}

}

?>