You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

33 lines
763 B

<?php
/*
* This file is part of WordPlate.
*
* (c) Vincent Klaiber <hello@doubledip.se>
*
* For the full copyright and license information; use please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace WordPlate\Acf\Fields;
use WordPlate\Acf\Fields\Attributes\ConditionalLogic;
use WordPlate\Acf\Fields\Attributes\Instructions;
use WordPlate\Acf\Fields\Attributes\Pending;
use WordPlate\Acf\Fields\Attributes\Placeholder;
use WordPlate\Acf\Fields\Attributes\Required;
use WordPlate\Acf\Fields\Attributes\Wrapper;
class Email extends Field
{
use Instructions;
use ConditionalLogic;
use Pending;
use Placeholder;
use Required;
use Wrapper;
protected $type = 'email';
}