* @link https://TheTempusProject.com * @license https://opensource.org/licenses/MIT [MIT LICENSE] */ namespace TheTempusProject\Plugins\Bugreport; use TheTempusProject\Bedrock\Functions\Input; use TheTempusProject\Classes\Forms; class BugReportForms extends Forms { /** * Adds these functions to the form list. */ public function __construct() { self::addHandler( 'bugreport', __CLASS__, 'bugreport' ); } /** * Validates the bug report form. * * @return {bool} */ public static function bugreport() { if ( !self::url( Input::post( 'url' ) ) ) { self::addUserError( 'Invalid url.' ); return false; } if ( !self::url( Input::post( 'ourl' ) ) ) { self::addUserError( 'Invalid original url.' ); return false; } if ( !self::tf( Input::post( 'repeat' ) ) ) { self::addUserError( 'Invalid repeat value.' ); return false; } if ( !self::token() ) { return false; } return true; } } new BugReportForms;