25 lines
828 B
PHP
25 lines
828 B
PHP
<?php
|
|
|
|
|
|
namespace App\PageBuilder\Helpers;
|
|
|
|
|
|
class RepeaterField
|
|
{
|
|
public const TEXT = 'Text';
|
|
public const TEXTAREA = 'Textarea';
|
|
public const EMAIL = 'Email';
|
|
public const ICON_PICKER = 'IconPicker';
|
|
public const IMAGE = 'Image';
|
|
public const IMAGE_GALLERY = 'ImageGallery';
|
|
public const NICE_SELECT = 'NiceSelect';
|
|
public const SELECT = 'Select';
|
|
public const SUMMERNOTE = 'Summernote';
|
|
public const SWITCHER = 'Switcher';
|
|
public const NUMBER = 'Number';
|
|
|
|
public static function remove_default_fields($all_settings){
|
|
unset($all_settings['id'], $all_settings['addon_name'], $all_settings['addon_type'], $all_settings['addon_location'], $all_settings['addon_order'], $all_settings['addon_page_id'], $all_settings['addon_page_type']);
|
|
return $all_settings;
|
|
}
|
|
} |