2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
2018-08-07 13:27:08 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
2021-01-03 16:49:35 +00:00
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
2018-08-07 13:27:08 +00:00
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
?>
|
|
|
|
###BOM###
|
|
|
|
|
2018-05-18 06:03:55 +00:00
|
|
|
// No direct access to this file
|
2018-03-27 09:57:16 +00:00
|
|
|
defined('JPATH_PLATFORM') or die;
|
|
|
|
|
|
|
|
use Joomla\CMS\Form\Form;
|
|
|
|
use Joomla\CMS\Form\FormRule;
|
|
|
|
use Joomla\Registry\Registry;
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
/**
|
2018-03-27 09:57:16 +00:00
|
|
|
* Form Rule (###Name###) class for the Joomla Platform.
|
2016-01-30 20:28:43 +00:00
|
|
|
*/
|
2018-03-27 09:57:16 +00:00
|
|
|
class JFormRule###Name### extends FormRule
|
|
|
|
{###VALIDATION_RULE_METHODS###
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|