-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed not shown phone field in Admin.
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
/** | ||
* Tel field class | ||
* | ||
* @package Leaves_And_Love\Plugin_Lib | ||
* @since 1.0.0 | ||
*/ | ||
|
||
namespace awsmug\Torro_Forms\DB_Objects\Elements\Element_Types; | ||
|
||
use Leaves_And_Love\Plugin_Lib\Fields\Text; | ||
|
||
if ( ! class_exists( 'Leaves_And_Love\Plugin_Lib\Fieldsawsmug\Torro_Forms\DB_Objects\Elements\Element_Types\Tel_Field' ) ) : | ||
|
||
/** | ||
* Class for a text field. | ||
* | ||
* @since 1.0.0 | ||
*/ | ||
class Tel_Field extends Text { | ||
} | ||
|
||
endif; |