function smarty_block_ol($params, $content = '', $template, &$repeat) { if ($repeat) { return; } $content = Clips\process_list_items($params, $content, $template); if (isset($params['items'])) { unset($params['items']); } return Clips\create_tag_with_content('ol', $content, $params); }
function smarty_block_ul($params, $content = '', $template, &$repeat) { if ($repeat) { Clips\clips_context('indent_level', 1, true); return; } $content = "\t" . Clips\process_list_items($params, $content, $template); if (isset($params['items'])) { unset($params['items']); } Clips\context_pop('indent_level'); return Clips\create_tag_with_content('ul', $content, $params); }
function smarty_block_swiper__wrapper($params, $content = '', $template, &$repeat) { if ($repeat) { \Clips\clips_context('indent_level', 1, true); return; } $default = array('class' => 'swiper-wrapper'); $content = "\t" . Clips\process_list_items($params, $content, $template); if (isset($params['items'])) { unset($params['items']); } \Clips\context_pop('indent_level'); return \Clips\create_tag('div', $params, $default, $content); }