- init commit

This commit is contained in:
ashubawork
2023-09-22 14:52:12 +03:00
parent 079c8caeb5
commit 86afc2523a
2 changed files with 22 additions and 0 deletions
+15
View File
@@ -665,6 +665,21 @@ if ( ! class_exists( 'um\core\Builtin' ) ) {
),
),
),
'oembed' => array(
'name' => __( 'oEmbed', 'ultimate-member' ),
'col1' => array( '_title', '_metakey', '_help', '_default', '_visibility' ),
'col2' => array( '_label', '_placeholder', '_public', '_roles', '_validate', '_custom_validate' ),
'col3' => array( '_required', '_editable', '_icon' ),
'validate' => array(
'_title' => array(
'mode' => 'required',
'error' => __( 'You must provide a title', 'ultimate-member' ),
),
'_metakey' => array(
'mode' => 'unique',
),
),
),
/*'group' => array(
'name' => 'Field Group',
+7
View File
@@ -1711,6 +1711,12 @@ if ( ! class_exists( 'um\core\Fields' ) ) {
break;
case 'oembed':
$array['input'] = 'url';
break;
case 'date':
$array['input'] = 'text';
@@ -2649,6 +2655,7 @@ if ( ! class_exists( 'um\core\Fields' ) ) {
}
break;
/* URL */
case 'oembed':
case 'url':
$output .= '<div ' . $this->get_atts( $key, $classes, $conditional, $data ) . '>';