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,7 @@
<?php
/**
* Price list template
*/
?>
<?php $this->__get_global_looped_template( 'price-list', 'price_list' ); ?>

View File

@@ -0,0 +1,6 @@
<?php
/**
* Price list end template
*/
?>
</ul>

View File

@@ -0,0 +1,30 @@
<?php
/**
* Price list item template
*/
if ( in_array( $this->__processed_index, $this->__hidden_price_items ) ) {
return;
}
$item_title_attr = $this->get_item_inline_editing_attributes( 'item_title', 'price_list', $this->__processed_item_index, 'price-list__item-title' );
$item_price_attr = $this->get_item_inline_editing_attributes( 'item_price', 'price_list', $this->__processed_item_index, 'price-list__item-price' );
$item_desc_attr = $this->get_item_inline_editing_attributes( 'item_text', 'price_list', $this->__processed_item_index, 'price-list__item-desc' );
$this->__processed_item_index += 1;
?>
<li class="price-list__item"><?php
echo $this->__open_price_item_link( 'item_url' );
echo '<div class="price-list__item-inner">';
echo $this->__get_price_list_image();
echo '<div class="price-list__item-content">';
echo '<div class="price-list__item-title__wrapper">';
echo $this->__loop_item( array( 'item_title' ), '<h5 ' . $item_title_attr . '>%s</h5>' );
echo '<div class="price-list__item-separator"></div>';
echo $this->__loop_item( array( 'item_price' ), '<div ' . $item_price_attr . '>%s</div>' );
echo '</div>';
echo $this->__loop_item( array( 'item_text' ), '<div ' . $item_desc_attr . '>%s</div>' );
echo '</div>';
echo '</div>';
echo $this->__close_price_item_link( 'item_url' );
?></li>

View File

@@ -0,0 +1,6 @@
<?php
/**
* Price list start template
*/
?>
<ul class="jet-price-list">