HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/itpartnership.net (cms)/modules/FeedbackForm/classes/PageBreak.class.php
<?php
// Feedback Form. 02/2005 SjG <feedbackform_cmsmodule@fogbound.net>
// A Module for CMS Made Simple, (c)2005 by Ted Kulp (wishy@cmsmadesimple.org)
// This project's homepage is: http://www.cmsmadesimple.org

class ffPageBreak extends ffInput {

	function ffPageBreak(&$mod_globals, $formRef, $params=array())
	{
        $this->ffInput($mod_globals, $formRef, $params);
		$this->Type = 'PageBreak';
		$this->DisplayType = $this->mod_globals->Lang('field_type_page_break');
		$this->Required = false;
		$this->DisplayInForm = false;
		$this->ValidationTypes = array($this->mod_globals->Lang('validation_none')=>'none');
		$this->specialInput = true;
	}

	function WriteToPublicForm($id, &$params, $return_id)
	{
	}


	function StatusInfo()
	{
		return '';
	}


	function RenderAdminForm($formDescriptor)
	{
		return array();
	}


	function Validate()
	{
		return array(true,'');
	}
	
	function AdminValidate()
	{
		return array(true,'');
	}
}

?>