first commit

This commit is contained in:
2024-07-31 13:12:38 +07:00
commit b4e8cbe182
10213 changed files with 3125839 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<?php
return array(
'title' => esc_html__( 'Social Setting', 'thinkai' ),
'id' => 'social_setting',
'desc' => '',
'icon' => 'el el-share',
'fields' => array(
array(
'id' => 'social_media_tabs_v3',
'type' => 'repeater',
'icon' => 'el-icon-thumbs-up',
'title' => __('Add Social Media', 'thinkai'),
'group_values' => true,
'sortable' => true,
'fields' => array(
array(
'id' => 'title_social_media',
'type' => 'text',
'title' => __('Title', 'thinkai'),
),
array(
'id' => 'select_social_media',
'type' => 'select',
'data' => get_fontawesome_icons(),
'title' => esc_html__('Choose Social Media', 'thinkai'),
),
array(
'id' => 'link_social_media',
'type' => 'text',
'title' => __('Link', 'thinkai'),
),
)
),
),
);