/home/techb158/public_html/wp-content/plugins/kirki
NameSizeModeActions
app/-0755rm
assets/-0755rm
bootstrap/-0755rm
ComponentLibrary/-0755rm
config/-0755rm
customizer/-0755rm
database/-0755rm
includes/-0755rm
languages/-0755rm
libraries/-0755rm
routes/-0755rm
vendor/-0755rm
config.php85170644editdlrm
kirki.php18150644editdlrm
readme.txt221350644editdlrm
Edit: /home/techb158/public_html/wp-content/plugins/kirki/config.php (8517B)
'no', 'FULL_ACCESS' => 'full', 'CONTENT_ACCESS' => 'content', 'VIEW_ACCESS' => 'view', ) ); } if (!defined('KIRKI_USERS_DEFAULT_FULL_ACCESS')) { define('KIRKI_USERS_DEFAULT_FULL_ACCESS', array('administrator', 'editor')); } /* Custom DB table names */ if (!defined('KIRKI_FORM_TABLE')) { define('KIRKI_FORM_TABLE', 'kirki_forms'); } if (!defined('KIRKI_FORM_DATA_TABLE')) { define('KIRKI_FORM_DATA_TABLE', 'kirki_forms_data'); } if (!defined('KIRKI_COLLABORATION_TABLE')) { define('KIRKI_COLLABORATION_TABLE', 'kirki_collaborations'); } if (!defined('KIRKI_CM_REFERENCE_TABLE')) { define('KIRKI_CM_REFERENCE_TABLE', 'kirki_cm_reference'); } if (!defined('KIRKI_COMMENTS_TABLE')) { define('KIRKI_COMMENTS_TABLE', 'kirki_comments'); } /* Custom DB table names */ if (!defined('KIRKI_SUPPORTED_MEDIA_TYPES')) { define( 'KIRKI_SUPPORTED_MEDIA_TYPES', array( 'image' => array('image/jpeg', 'image/jpg', 'image/png', 'image/gif', 'image/webp'), 'video' => array('video/mp4', 'video/ogg', 'video/quicktime'), 'svg' => array('image/svg+xml'), 'audio' => array('audio/mpeg', 'audio/ogg'), 'json' => array('application/json'), 'lottie' => array('text/plain', 'application/json'), 'pdf' => array('application/pdf'), ) ); } /** * @deprecated Use config('form-uploads.accepted_mime_types') instead. */ if (!defined('KIRKI_SUPPORTED_MEDIA_TYPES_FOR_FILE_INPUT')) { define( 'KIRKI_SUPPORTED_MEDIA_TYPES_FOR_FILE_INPUT', array( 'default' => array('image/jpeg', 'image/jpg', 'image/png', 'image/gif', 'image/webp', 'video/mp4', 'video/ogg', 'video/quicktime', 'application/pdf', 'application/msword', 'text/plain'), '.doc, .pdf, .txt' => array('application/pdf', 'application/msword', 'text/plain'), '.mp4, .mov' => array('video/mp4', 'video/ogg', 'video/quicktime'), '.jpg, .jpeg, .png, .gif' => array('image/jpeg', 'image/jpg', 'image/png', 'image/gif', 'image/webp'), ) ); } if (!defined('KIRKI_WORDPRESS_SORT_BY_OPTIONS')) { define( 'KIRKI_WORDPRESS_SORT_BY_OPTIONS', array('none', 'ID', 'author', 'title', 'name', 'type', 'date', 'modified', 'parent', 'comment_count', 'menu_order') ); } if (!defined('KIRKI_PRESERVED_CLASS_LIST')) { define( 'KIRKI_PRESERVED_CLASS_LIST', array( 'kirki-current-tab', 'kirki-tab-active', 'kirki-slide-active', 'kirki-slider-nav-item-active', 'kirki-slider-arrow-left-active', 'kirki-slider-arrow-right-active', 'kirki-navigation-item-active', 'kirki-active', 'kirki-pagination-item-active', 'kirki-active-link', ) ); } if (!defined('KIRKI_PLUGIN_SETTINGS')) { define( 'KIRKI_PLUGIN_SETTINGS', array( 'INPUT_TEXT' => array( 'type' => 'inputtext', 'placeholder' => 'Placeholder text', ), 'INPUT' => array( 'type' => 'input', 'placeholder' => 'Placeholder text', ), 'INPUT_NUMBER' => array( 'type' => 'inputnumber', 'placeholder' => 'Placeholder text', ), 'DYNAMIC_INPUT' => array( 'type' => 'dynamicinput', 'placeholder' => 'Placeholder text', ), 'CHECKBOX' => array('type' => 'checkbox'), 'TOGGLER' => array('type' => 'toggler'), 'COLOR_PICKER' => array( 'type' => 'colorpicker', 'title' => 'Heading Color', ), 'SELECT' => array( 'type' => 'select', 'options' => array( array( 'value' => 'value1', 'title' => 'Value One', ), array( 'value' => 'value2', 'title' => 'Value Two', ), ), ), 'DIVIDER_FULL' => array( 'type' => 'divider', 'style' => 'full', ), 'DIVIDER_HALF' => array( 'type' => 'divider', 'style' => 'half', ), 'DIVIDER_TRANSPARENT' => array('type' => 'divider_tansparent'), 'TAB' => array( 'type' => 'tab', 'tabs' => array(), ), 'DATEPICKER' => array('type' => 'datepicker'), 'SELECT_WITH_WP_POST_SUGGESTION' => array( 'postType' => 'kirki_popup', 'type' => 'select_with_wp_post_suggestion', ), ) ); }