first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
/**
* Accordion template.
*
* @package Cherry_Interface_Builder
* @subpackage Views
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<div class="cherry-ui-kit cherry-component cherry-accordion <?php echo esc_attr( $__data['class'] ); ?>" data-compotent-id="#<?php echo esc_attr( $__data['id'] ) ?>">
<?php if ( ! empty( $__data['title'] ) ) { ?>
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h2>
<?php } ?>
<?php if ( ! empty( $__data['description'] ) ) { ?>
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
<?php } ?>
<?php if ( ! empty( $__data['children'] ) ) { ?>
<div class="cherry-ui-kit__content cherry-component__content cherry-accordion__content" role="group" >
<?php echo $__data['children'] ?>
</div>
<?php } ?>
</div>

View File

@@ -0,0 +1,30 @@
<?php
/**
* Repeater template.
*
* @package Cherry_Interface_Builder
* @subpackage Views
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<div class="cherry-ui-kit cherry-component cherry-repeater <?php echo esc_attr( $__data['class'] ); ?>" data-compotent-id="#<?php echo esc_attr( $__data['id'] ); ?>">
<?php if ( ! empty( $__data['title'] ) ) { ?>
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h2>
<?php } ?>
<?php if ( ! empty( $__data['description'] ) ) { ?>
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
<?php } ?>
<?php if ( ! empty( $__data['children'] ) ) { ?>
<div class="cherry-ui-kit__content cherry-component__content" role="group" >
<?php echo $__data['children']; ?>
</div>
<?php } ?>
</div>

View File

@@ -0,0 +1,35 @@
<?php
/**
* Horizontal tab template.
*
* @package Cherry_Interface_Builder
* @subpackage Views
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<div class="cherry-ui-kit cherry-component cherry-tab cherry-tab--horizontal <?php echo esc_attr( $__data['class'] ) ?>" data-compotent-id="#<?php echo esc_attr( $__data['id'] ); ?>">
<?php if ( ! empty( $__data['title'] ) ) { ?>
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h2>
<?php } ?>
<?php if ( ! empty( $__data['description'] ) ) { ?>
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
<?php } ?>
<?php if ( ! empty( $__data['children'] ) ) { ?>
<div class="cherry-tab__body" >
<div class="cherry-tab__tabs" role="navigation" >
<?php echo $__data['tabs']; ?>
</div>
<div class="cherry-ui-kit__content cherry-component__content cherry-tab__content" role="group" >
<?php echo $__data['children']; ?>
</div>
</div>
<?php } ?>
</div>

View File

@@ -0,0 +1,35 @@
<?php
/**
* Verticall tab template.
*
* @package Cherry_Interface_Builder
* @subpackage Views
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<div class="cherry-ui-kit cherry-component cherry-tab cherry-tab--vertical <?php echo esc_attr( $__data['class'] ); ?>" data-compotent-id="#<?php echo esc_attr( $__data['id'] ); ?>">
<?php if ( ! empty( $__data['title'] ) ) { ?>
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h2>
<?php } ?>
<?php if ( ! empty( $__data['description'] ) ) { ?>
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
<?php } ?>
<?php if ( ! empty( $__data['children'] ) ) { ?>
<div class="cherry-tab__body" >
<div class="cherry-tab__tabs" role="navigation" >
<?php echo $__data['tabs']; ?>
</div>
<div class="cherry-ui-kit__content cherry-component__content cherry-tab__content" role="group" >
<?php echo $__data['children']; ?>
</div>
</div>
<?php } ?>
</div>

View File

@@ -0,0 +1,30 @@
<?php
/**
* Toggle template.
*
* @package Cherry_Interface_Builder
* @subpackage Views
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<div class="cherry-ui-kit cherry-component cherry-toggle <?php echo esc_attr( $__data['class'] ); ?>" data-compotent-id="#<?php echo esc_attr( $__data['id'] ); ?>">
<?php if ( ! empty( $__data['title'] ) ) { ?>
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h2>
<?php } ?>
<?php if ( ! empty( $__data['description'] ) ) { ?>
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
<?php } ?>
<?php if ( ! empty( $__data['children'] ) ) { ?>
<div class="cherry-ui-kit__content cherry-component__content cherry-toggle__content" role="group" >
<?php echo $__data['children']; ?>
</div>
<?php } ?>
</div>

View File

@@ -0,0 +1,34 @@
<?php
/**
* Control template.
*
* @package Cherry_Interface_Builder
* @subpackage Views
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<div class="cherry-ui-kit cherry-control <?php echo esc_attr( $__data['class'] ); ?>">
<?php if ( ! empty( $__data['title'] ) || ! empty( $__data['description'] ) ) { ?>
<div class="cherry-control__info">
<?php if ( ! empty( $__data['title'] ) ) { ?>
<h4 class="cherry-ui-kit__title cherry-control__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h4>
<?php } ?>
<?php if ( ! empty( $__data['description'] ) ) { ?>
<div class="cherry-ui-kit__description cherry-control__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
<?php } ?>
</div>
<?php } ?>
<?php if ( ! empty( $__data['children'] ) ) { ?>
<div class="cherry-ui-kit__content cherry-control__content" role="group" >
<?php echo $__data['children']; ?>
</div>
<?php } ?>
</div>

View File

@@ -0,0 +1,24 @@
<?php
/**
* Form template.
*
* @package Cherry_Interface_Builder
* @subpackage Views
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<form class="cherry-form <?php echo esc_attr( $__data['class'] ); ?>" id="<?php echo esc_attr( $__data['id'] ); ?>" name="<?php echo esc_attr( $__data['id'] ); ?>" accept-charset="<?php echo esc_attr( $__data['accept-charset'] ); ?>" action="<?php echo esc_attr( $__data['action'] ); ?>" autocomplete="<?php echo esc_attr( $__data['autocomplete'] ); ?>" enctype="<?php echo esc_attr( $__data['enctype'] ); ?>" method="<?php echo esc_attr( $__data['method'] ); ?>" target="<?php echo esc_attr( $__data['target'] ); ?>" <?php echo esc_attr( $__data['novalidate'] ); ?> >
<?php
if ( ! empty( $__data['children'] ) ) {
echo $__data['children'];
}
?>
</form>

View File

@@ -0,0 +1,24 @@
<?php
/**
* HTML template.
*
* @package Cherry_Interface_Builder
* @subpackage Views
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<div class="cherry-ui-kit <?php echo esc_attr( $__data['class'] ); ?>">
<?php if ( ! empty( $__data['children'] ) ) { ?>
<div class="cherry-ui-kit__content" role="group" >
<?php echo $__data['children']; ?>
</div>
<?php } ?>
</div>

View File

@@ -0,0 +1,36 @@
<?php
/**
* Section template.
*
* @package Cherry_Interface_Builder
* @subpackage Views
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<div class="cherry-ui-kit cherry-section <?php echo esc_attr( $__data['class'] ); ?>" onclick="void(0)">
<div class="cherry-section__holder">
<div class="cherry-section__inner">
<div class="cherry-section__info">
<?php if ( ! empty( $__data['title'] ) ) { ?>
<h1 class="cherry-ui-kit__title cherry-section__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h1>
<?php } ?>
<?php if ( ! empty( $__data['description'] ) ) { ?>
<div class="cherry-ui-kit__description cherry-section__description " role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
<?php } ?>
</div>
<?php if ( ! empty( $__data['children'] ) ) { ?>
<div class="cherry-ui-kit__content cherry-section__content" role="group" >
<?php echo $__data['children']; ?>
</div>
<?php } ?>
</div>
</div>
</div>

View File

@@ -0,0 +1,18 @@
<?php
/**
* Settings title template.
*
* @package Cherry_Interface_Builder
* @subpackage Views
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<h3 class="cherry-ui-kit__title cherry-settings__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h3>

View File

@@ -0,0 +1,32 @@
<?php
/**
* Settings template.
*
* @package Cherry_Interface_Builder
* @subpackage Views
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<div class="cherry-ui-kit cherry-settings <?php echo esc_attr( $__data['class'] ); ?>">
<?php if ( ! empty( $__data['title'] ) ) {
echo $__data['title'];
} ?>
<?php if ( ! empty( $__data['children'] ) || ! empty( $__data['description'] ) ) { ?>
<div class="cherry-ui-kit__content cherry-settings__content" role="group" id="<?php echo esc_attr( $__data['id'] ); ?>" >
<?php if ( ! empty( $__data['description'] ) ) { ?>
<div class="cherry-ui-kit__description cherry-settings__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
<?php } ?>
<?php if ( ! empty( $__data['children'] ) ) { ?>
<?php echo $__data['children']; ?>
<?php } ?>
</div>
<?php } ?>
</div>

View File

@@ -0,0 +1,20 @@
<?php
/**
* Tabs title template.
*
* @package Cherry_Interface_Builder
* @subpackage Views
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<button class="cherry-tab__button cherry-component__button" role="button" title="<?php echo esc_attr( $__data['title'] ); ?>" aria-expanded="false" data-content-id="#<?php echo esc_attr( $__data['id'] ); ?>">
<h3 class="cherry-ui-kit__title cherry-tab__title" aria-grabbed="true" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h3>
</button>

View File

@@ -0,0 +1,22 @@
<?php
/**
* Toggle title template.
*
* @package Cherry_Interface_Builder
* @subpackage Views
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<button class="cherry-toggle__header cherry-component__button" role="button" aria-expanded="false" data-content-id="#<?php echo esc_attr( $__data['id'] ); ?>">
<h3 class="cherry-ui-kit__title cherry-toggle__title" aria-grabbed="true" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h3>
<span class="dashicons dashicons-arrow-down hide-icon"></span>
<span class="dashicons dashicons-arrow-up show-icon"></span>
</button>