Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-conte.../plugins/themify-.../includes/tpl
File: tmpl-common.php
<li data-action="paste"><?php _e('Paste', 'themify') ?></li>
[500] Fix | Delete
<li data-action="paste" class="style"><?php _e('Paste Styling', 'themify') ?></li>
[501] Fix | Delete
</ul>
[502] Fix | Delete
</li>
[503] Fix | Delete
<li data-action="visibility">
[504] Fix | Delete
<?php echo $eye,__('Visibility', 'themify') ?>
[505] Fix | Delete
</li>
[506] Fix | Delete
</ul>
[507] Fix | Delete
</li>
[508] Fix | Delete
</ul>
[509] Fix | Delete
</template>
[510] Fix | Delete
<template id="tmpl-builder_grid_list">
[511] Fix | Delete
<?php
[512] Fix | Delete
$globalGutters= Themify_Builder_Model::get_gutters();
[513] Fix | Delete
$gridSettings=array(
[514] Fix | Delete
'grid'=>array(
[515] Fix | Delete
// Grid FullWidth
[516] Fix | Delete
array('grid' => 1,'name'=>__('Full Width','themify')),
[517] Fix | Delete
// Grid 2
[518] Fix | Delete
array('grid' => 2,'name'=>__('2 Cols','themify')),
[519] Fix | Delete
// Grid 3
[520] Fix | Delete
array('grid' => 3,'name'=>__('3 Cols','themify')),
[521] Fix | Delete
// Grid 4
[522] Fix | Delete
array('grid' => 4,'name'=>__('4 Cols','themify')),
[523] Fix | Delete
// Grid 5
[524] Fix | Delete
array('grid' => 5,'name'=>__('5 Cols','themify')),
[525] Fix | Delete
// Grid 6
[526] Fix | Delete
array('grid' => 6,'name'=>__('6 Cols','themify')),
[527] Fix | Delete
[528] Fix | Delete
array('grid' =>'1_3','name'=>__('2 Cols (25/75)','themify')),
[529] Fix | Delete
array('grid' =>'1_1_2','name'=>__('3 Cols (25/25/50)','themify')),
[530] Fix | Delete
array('grid' =>'1_2_1', 'name'=>__('3 Cols (25/50/25)','themify')),
[531] Fix | Delete
array('grid' =>'2_1_1','name'=>__('3 Cols (50/25/25)','themify')),
[532] Fix | Delete
array('grid' =>'3_1','name'=>__('2 Cols (75/25)','themify')),
[533] Fix | Delete
array('grid' =>'1_2','name'=>__('2 Cols (35/65)','themify')),
[534] Fix | Delete
array('grid' =>'2_1','name'=>__('2 Cols (65/35)','themify')),
[535] Fix | Delete
array('grid' =>'user','name'=>__('Custom','themify'))
[536] Fix | Delete
),
[537] Fix | Delete
'alignment'=>array(
[538] Fix | Delete
array('value' => 'start', 'name' => __('Align Top', 'themify')),
[539] Fix | Delete
array('value' => 'center', 'name' => __('Align Middle', 'themify')),
[540] Fix | Delete
array('value' => 'end', 'name' => __('Align Bottom', 'themify'))
[541] Fix | Delete
),
[542] Fix | Delete
'height'=>array(
[543] Fix | Delete
array('img' => 'stretch', 'value' => -1, 'name' => __('Stretch', 'themify')),
[544] Fix | Delete
array('img' => 'stretch_auto', 'value' => 1, 'name' => __('Auto height', 'themify'))
[545] Fix | Delete
),
[546] Fix | Delete
'gutter'=>array(
[547] Fix | Delete
array('name' => sprintf(__('Normal (%s%%)', 'themify'),$globalGutters['gutter']), 'value' => 'gutter'),
[548] Fix | Delete
array('name' => sprintf(__('Narrow (%s%%)', 'themify'),$globalGutters['narrow']), 'value' => 'narrow'),
[549] Fix | Delete
array('name' => sprintf(__('None (%s%%)', 'themify'),$globalGutters['none']), 'value' => 'none')
[550] Fix | Delete
)
[551] Fix | Delete
);
[552] Fix | Delete
$is_fullpage=function_exists('themify_theme_is_fullpage_scroll') && themify_theme_is_fullpage_scroll()?'center':'start';
[553] Fix | Delete
?>
[554] Fix | Delete
<ul class="breakpoints grid_layout" data-col="breakpoint">
[555] Fix | Delete
<?php foreach ($breakpoints as $b => $v): ?>
[556] Fix | Delete
<li data-id="<?php echo $b ?>" class="tab_<?php echo $b ?>"><?php echo themify_get_icon(($b === 'tablet_landscape' ? 'tablet' : $b), 'ti') ?>
[557] Fix | Delete
<div class="themify_tooltip"><?php echo $b === 'tablet_landscape' ? __('Tablet Landscape', 'themify') : ucfirst($b); ?></div>
[558] Fix | Delete
</li>
[559] Fix | Delete
<?php endforeach; ?>
[560] Fix | Delete
</ul>
[561] Fix | Delete
<ul class="grid_list" data-col="grid">
[562] Fix | Delete
<?php if ($b !== 'desktop'): ?>
[563] Fix | Delete
<li class="grid cauto selected tf_hide" data-grid="auto">
[564] Fix | Delete
<div class="themify_tooltip"><?php _e('Use default css', 'themify') ?></div>
[565] Fix | Delete
</li>
[566] Fix | Delete
<?php endif; ?>
[567] Fix | Delete
<?php foreach ($gridSettings['grid'] as $li): ?>
[568] Fix | Delete
<li class="tb<?php echo is_string($li['grid']) ? (substr_count($li['grid'], '_') + 1) : $li['grid']; ?> grid c<?php echo $li['grid'] ?>" data-grid="<?php echo $li['grid']; ?>">
[569] Fix | Delete
[570] Fix | Delete
<div class="themify_tooltip"><?php echo $li['name']; ?></div>
[571] Fix | Delete
</li>
[572] Fix | Delete
<?php endforeach; ?>
[573] Fix | Delete
</ul>
[574] Fix | Delete
<div class="alignment_wrap grid_layout">
[575] Fix | Delete
<div class="left">
[576] Fix | Delete
<ul class="alignment grid_layout" data-col="alignment">
[577] Fix | Delete
<?php foreach ($gridSettings['alignment'] as $v): ?>
[578] Fix | Delete
<li class="<?php echo $v['value'] ?><?php if ($v['value'] === $is_fullpage):?> selected<?php endif;?>" data-value="<?php echo $v['value'] ?>">
[579] Fix | Delete
<div class="themify_tooltip"><?php echo $v['name']; ?></div>
[580] Fix | Delete
</li>
[581] Fix | Delete
<?php endforeach; ?>
[582] Fix | Delete
</ul>
[583] Fix | Delete
<div class="auto_dir grid_layout">
[584] Fix | Delete
<ul class="auto_height grid_layout" data-col="autoHeight">
[585] Fix | Delete
<?php foreach ($gridSettings['height'] as $v): ?>
[586] Fix | Delete
<li class="<?php echo $v['img'] ?><?php if ($v['value'] === -1):?> selected<?php endif;?>" data-value="<?php echo $v['value']; ?>">
[587] Fix | Delete
<div class="themify_tooltip"><?php echo $v['name']; ?></div>
[588] Fix | Delete
</li>
[589] Fix | Delete
<?php endforeach; ?>
[590] Fix | Delete
</ul>
[591] Fix | Delete
<ul class="direction" data-col="direction">
[592] Fix | Delete
<li class="reverse">
[593] Fix | Delete
<div class="themify_tooltip"><?php _e('Reverse', 'themify') ?></div>
[594] Fix | Delete
</li>
[595] Fix | Delete
</ul>
[596] Fix | Delete
</div>
[597] Fix | Delete
</div>
[598] Fix | Delete
<div class="right tb_field">
[599] Fix | Delete
<ul class="gutter grid_layout" data-col="gutter">
[600] Fix | Delete
<?php foreach ($gridSettings['gutter'] as $v): ?>
[601] Fix | Delete
<li class="<?php echo $v['value'] ?><?php if ($v['value'] === 'gutter'):?> selected<?php endif;?>" data-value="<?php echo $v['value']; ?>">
[602] Fix | Delete
<div class="themify_tooltip"><?php echo $v['name']; ?></div>
[603] Fix | Delete
</li>
[604] Fix | Delete
<?php endforeach; ?>
[605] Fix | Delete
</ul>
[606] Fix | Delete
<div class="range_wrap grid_layout">
[607] Fix | Delete
<input type="range" id="slider" min="0" step=".1">
[608] Fix | Delete
<div id="range_holder" class="tf_rel">
[609] Fix | Delete
<input type="number" id="range" class="tb_range" min="0">
[610] Fix | Delete
<div class="selectwrapper noborder tf_inline_b tf_vmiddle tf_rel">
[611] Fix | Delete
<select id="range_unit">
[612] Fix | Delete
<option value="%">%</option>
[613] Fix | Delete
<option value="em">em</option>
[614] Fix | Delete
<option value="px">px</option>
[615] Fix | Delete
</select>
[616] Fix | Delete
</div>
[617] Fix | Delete
</div>
[618] Fix | Delete
</div>
[619] Fix | Delete
</div>
[620] Fix | Delete
</div>
[621] Fix | Delete
<?php unset($gridSettings,$is_fullpage,$breakpoints);?>
[622] Fix | Delete
</template>
[623] Fix | Delete
[624] Fix | Delete
<template id="tmpl-last_row_add_btn">
[625] Fix | Delete
<link href="<?php echo THEMIFY_BUILDER_URI ?>/css/editor/components/last-row.css?ver<?php echo THEMIFY_VERSION?>" as="style" rel="preload" onload="this.rel = 'stylesheet'">
[626] Fix | Delete
<div id="container" tabindex="-1" class="tf_overflow tf_rel tf_box tf_w<?php echo $isGsPost?>">
[627] Fix | Delete
<a href="javascript:;" class="add_btn tf_textc tf_text_dec">+</a>
[628] Fix | Delete
</div>
[629] Fix | Delete
</template>
[630] Fix | Delete
<template id="tmpl-last_row_expand">
[631] Fix | Delete
<div class="grids tf_w tf_opacity tf_hidden" tabindex="-1">
[632] Fix | Delete
<?php for($i=1;$i<7;++$i):?>
[633] Fix | Delete
<div class="tb_grid tf_box" data-slug="<?php echo $i?>" title="<?php printf(_n('%s Col','%s Cols',$i,'themify'),$i)?>">
[634] Fix | Delete
<div class="tb_grid_title tb_grid_<?php echo $i?> tf_w tf_h">
[635] Fix | Delete
<?php for($j=0;$j<$i;++$j):?>
[636] Fix | Delete
<span></span>
[637] Fix | Delete
<?php endfor;?>
[638] Fix | Delete
</div>
[639] Fix | Delete
</div>
[640] Fix | Delete
<?php endfor;?>
[641] Fix | Delete
<div class="block">
[642] Fix | Delete
<span class="plus"><?php _e('Blocks','themify'); ?></span>
[643] Fix | Delete
</div>
[644] Fix | Delete
</div>
[645] Fix | Delete
</template>
[646] Fix | Delete
<template id="tb_global_styles_root">
[647] Fix | Delete
<style id="module_gs_form_style">
[648] Fix | Delete
<?php echo file_get_contents(THEMIFY_BUILDER_DIR.'/css/editor/components/gs-form.css');?>
[649] Fix | Delete
</style>
[650] Fix | Delete
<div id="container" class="empty tf_w<?php echo $isGsPost?>" tabindex="-1">
[651] Fix | Delete
<div class="selected_wrap tf_scrollbar tf_hide tf_box" tabindex="-1"></div>
[652] Fix | Delete
<div class="icon_wrap tf_w" tabindex="-1">
[653] Fix | Delete
<div class="icon tf_textc" tabindex="-1">
[654] Fix | Delete
<?php echo $gs?>
[655] Fix | Delete
<span class="tooltip tf_box tf_hide"><?php _e('Global Styles','themify') ?></span>
[656] Fix | Delete
</div>
[657] Fix | Delete
<ul class="actions dropdown tf_opacity tf_hidden" tabindex="-1">
[658] Fix | Delete
<li data-action="insert" tabindex="-1">
[659] Fix | Delete
<?php _e('Insert Global Style','themify') ?>
[660] Fix | Delete
</li>
[661] Fix | Delete
<li data-action="save"><?php _e('Save as Global Style','themify') ?></li>
[662] Fix | Delete
</ul>
[663] Fix | Delete
<div class="form dropdown tf_opacity" tabindex="-1">
[664] Fix | Delete
<div class="tf_loader tf_abs_c"></div>
[665] Fix | Delete
<div class="header">
[666] Fix | Delete
<label class="tf_rel" for="search">
[667] Fix | Delete
<?php echo themify_get_icon('search','ti') ?>
[668] Fix | Delete
<input type="text" id="search" class="tf_box" autocomplete="off" required pattern=".*\S.*" inputmode="search">
[669] Fix | Delete
<button class="clear_search tf_close" type="button"></button>
[670] Fix | Delete
</label>
[671] Fix | Delete
<a class="link" href="<?php echo esc_url(admin_url( 'admin.php?page=themify-global-styles')); ?>" target="_blank">
[672] Fix | Delete
<?php echo $window,__('Manage Styles', 'themify') ?>
[673] Fix | Delete
</a>
[674] Fix | Delete
</div>
[675] Fix | Delete
<div class="list tf_scrollbar tf_overflow tf_rel tf_w">
[676] Fix | Delete
<div class="no_gs tf_textc"><?php _e('No Global Styles found.', 'themify') ?></div>
[677] Fix | Delete
<div class="reload tf_abs_c tf_hide" title="<?php _e('Load More','themify')?>"><?php echo themify_get_icon('reload','ti') ?></div>
[678] Fix | Delete
</div>
[679] Fix | Delete
</div>
[680] Fix | Delete
</div>
[681] Fix | Delete
</div>
[682] Fix | Delete
<div class="overlay tf_abs_t tf_textc tf_box tf_w tf_h">
[683] Fix | Delete
<p class="tf_box"><?php _e('This module is using a Global Style. Adding styling to this module will override the Global Style. Click here to add styling.', 'themify')?></p>
[684] Fix | Delete
</div>
[685] Fix | Delete
</template>
[686] Fix | Delete
<div id="tb_builder_right_click_root" class="tf_hide tf_abs_t">
[687] Fix | Delete
<template shadowrootmode="open">
[688] Fix | Delete
<div id="menu"<?php if($is_admin===true || $isGsPost!==''):?> class="<?php if($is_admin===true):?> backend<?php endif;?><?php echo $isGsPost?>"<?php endif;?>>
[689] Fix | Delete
<div class="tb_action_breadcrumb tf_rel tf_scrollbar"></div>
[690] Fix | Delete
<ul class="tf_box">
[691] Fix | Delete
<li class="name"></li>
[692] Fix | Delete
<li data-action="undo" class="undo not_multi">
[693] Fix | Delete
<?php echo themify_get_icon('back-left','ti')?>
[694] Fix | Delete
<span><?php echo _e('Undo','themify')?></span>
[695] Fix | Delete
<span class="help"><?php _e('Cmd+Z','themify')?></span>
[696] Fix | Delete
</li>
[697] Fix | Delete
<li data-action="redo" class="redo not_multi">
[698] Fix | Delete
<?php echo themify_get_icon('back-right','ti')?>
[699] Fix | Delete
<span><?php echo _e('Redo','themify')?></span>
[700] Fix | Delete
<span class="help"><?php _e('Cmd+Shift+Z','themify')?></span>
[701] Fix | Delete
</li>
[702] Fix | Delete
<li data-action="edit" class="not_multi">
[703] Fix | Delete
<?php echo $edit?>
[704] Fix | Delete
<span><?php echo _e('Edit','themify')?></span>
[705] Fix | Delete
</li>
[706] Fix | Delete
<li data-action="styling" class="not_multi">
[707] Fix | Delete
<?php echo $brush?>
[708] Fix | Delete
<span><?php echo _e('Style','themify')?></span>
[709] Fix | Delete
</li>
[710] Fix | Delete
<li data-action="save" class="not_multi">
[711] Fix | Delete
<?php echo $save?>
[712] Fix | Delete
<span><?php echo _e('Save','themify')?></span>
[713] Fix | Delete
<span class="help"><?php _e('Cmd+S','themify')?></span>
[714] Fix | Delete
</li>
[715] Fix | Delete
<li data-action="duplicate">
[716] Fix | Delete
<?php echo $duplicate?>
[717] Fix | Delete
<span><?php echo _e('Duplicate','themify')?></span>
[718] Fix | Delete
<span class="help"><?php _e('Cmd+D','themify')?></span>
[719] Fix | Delete
</li>
[720] Fix | Delete
<li data-action="copy" class="not_multi">
[721] Fix | Delete
<?php echo $files?>
[722] Fix | Delete
<span><?php echo _e('Copy','themify')?></span>
[723] Fix | Delete
<span class="help"><?php _e('Cmd+C','themify')?></span>
[724] Fix | Delete
</li>
[725] Fix | Delete
<li class="inner_more">
[726] Fix | Delete
<?php echo $clipboard?>
[727] Fix | Delete
<span><?php echo _e('Paste','themify')?></span>
[728] Fix | Delete
<span class="help"><?php _e('Cmd+V','themify')?></span>
[729] Fix | Delete
<ul class="tf_box tf_hide">
[730] Fix | Delete
<li data-action="paste"><?php _e('Paste','themify')?></li>
[731] Fix | Delete
<li data-action="paste" class="style"><?php _e('Paste Styling','themify')?></li>
[732] Fix | Delete
</ul>
[733] Fix | Delete
</li>
[734] Fix | Delete
<li data-action="delete">
[735] Fix | Delete
<span class="tf_close"></span>
[736] Fix | Delete
<span><?php echo _e('Delete','themify')?></span>
[737] Fix | Delete
<span class="help"><?php _e('Cmd+Delete','themify')?></span>
[738] Fix | Delete
</li>
[739] Fix | Delete
<li data-action="visibility" class="visibility not_multi">
[740] Fix | Delete
<?php echo $eye?>
[741] Fix | Delete
<span><?php echo _e('Visibility','themify')?></span>
[742] Fix | Delete
</li>
[743] Fix | Delete
<li data-action="reset">
[744] Fix | Delete
<span class="tf_close"></span>
[745] Fix | Delete
<span><?php echo _e('Reset Styling','themify')?></span>
[746] Fix | Delete
</li>
[747] Fix | Delete
</ul>
[748] Fix | Delete
</div>
[749] Fix | Delete
</template>
[750] Fix | Delete
</div>
[751] Fix | Delete
<div id="tb_main_panel_root" class="tf_hide">
[752] Fix | Delete
<template shadowrootmode="open">
[753] Fix | Delete
<style id="module_drag_grids_style">
[754] Fix | Delete
<?php echo str_replace('img/',THEMIFY_BUILDER_URI.'/css/editor/img/',file_get_contents(THEMIFY_BUILDER_DIR.'/css/editor/components/drag-grids.css'));?>
[755] Fix | Delete
</style>
[756] Fix | Delete
<style id="module_panel_style">
[757] Fix | Delete
<?php echo file_get_contents(THEMIFY_BUILDER_DIR.'/css/editor/components/panel.css');?>
[758] Fix | Delete
</style>
[759] Fix | Delete
<style id="module_main_panel_style">
[760] Fix | Delete
<?php echo file_get_contents(THEMIFY_BUILDER_DIR.'/css/editor/components/main-panel.css');?>
[761] Fix | Delete
</style>
[762] Fix | Delete
<?php do_action('tb_main_panel_styles')?>
[763] Fix | Delete
<div id="main_panel" tabindex="-1" class="panel<?php if($is_admin===true):?> backend<?php endif;?><?php echo $isGsPost?> tf_box">
[764] Fix | Delete
<div class="tb_resizable tb_resizable_e" data-axis="x"></div>
[765] Fix | Delete
<div class="tb_resizable tb_resizable_s" data-axis="y"></div>
[766] Fix | Delete
<div class="tb_resizable tb_resizable_st" data-axis="-y"></div>
[767] Fix | Delete
<div class="tb_resizable tb_resizable_w" data-axis="w"></div>
[768] Fix | Delete
<div class="tb_resizable tb_resizable_se" data-axis="se"></div>
[769] Fix | Delete
<div class="tb_resizable tb_resizable_we" data-axis="sw"></div>
[770] Fix | Delete
<div class="tb_resizable tb_resizable_nw" data-axis="nw"></div>
[771] Fix | Delete
<div class="tb_resizable tb_resizable_ne" data-axis="ne"></div>
[772] Fix | Delete
<div class="panel_top tf_rel">
[773] Fix | Delete
<button type="button" class="drag_handle tf_w tf_h tf_abs"></button>
[774] Fix | Delete
<button type="button" class="panel_close tf_close"></button>
[775] Fix | Delete
<div class="minimize"></div>
[776] Fix | Delete
<span class="dropdown_label tf_rel tf_box tf_hide" tabindex="-1"><?php _e('Modules', 'themify') ?></span>
[777] Fix | Delete
<ul class="nav_tab">
[778] Fix | Delete
<li class="current" data-hide="panel_tab" data-target="panel_modules_wrap"><?php _e('Modules', 'themify') ?></li>
[779] Fix | Delete
<li data-hide="panel_tab" data-target="panel_rows"><?php _e('Blocks', 'themify') ?></li>
[780] Fix | Delete
<li data-hide="panel_tab" data-target="panel_library"><?php _e('Saved', 'themify') ?></li>
[781] Fix | Delete
</ul>
[782] Fix | Delete
</div>
[783] Fix | Delete
<div class="panel_container<?php echo apply_filters('tb_toolbar_module', '') ?> tf_h">
[784] Fix | Delete
<form class="panel_search_form tf_rel">
[785] Fix | Delete
<input type="text" class="panel_search tf_box tf_w" inputmode="search" required pattern=".*\S.*"/>
[786] Fix | Delete
<button class="clear_search tf_close" type="reset"></button>
[787] Fix | Delete
<?php echo themify_get_icon('search', 'ti') ?>
[788] Fix | Delete
</form>
[789] Fix | Delete
<div class="panel_tab panel_modules_wrap tf_scrollbar tf_overflow tf_rel tf_box tf_h tf_w">
[790] Fix | Delete
<div class="panel_acc cat_grid tf_w">
[791] Fix | Delete
<div class="panel_title"><h4><?php _e('Rows', 'themify'); ?></h4></div>
[792] Fix | Delete
<div class="panel_content">
[793] Fix | Delete
<ul class="grids">
[794] Fix | Delete
<?php for ($i = 1; $i < 7; ++$i): ?>
[795] Fix | Delete
<li>
[796] Fix | Delete
<div class="tb_grid tf_rel tf_w tf_box" data-slug="<?php echo $i ?>" draggable="true" title="<?php printf(_n('%s Col', '%s Cols', $i, 'themify'), $i) ?>">
[797] Fix | Delete
<div class="tb_grid_title tb_grid_<?php echo $i ?> tf_w tf_h">
[798] Fix | Delete
<?php for ($j = 0; $j < $i; ++$j): ?>
[799] Fix | Delete
<span></span>
[800] Fix | Delete
<?php endfor; ?>
[801] Fix | Delete
</div>
[802] Fix | Delete
<button type="button" data-type="row" class="tf_plus_icon add_module_btn tb_disable_sorting tf_rel"></button>
[803] Fix | Delete
</div>
[804] Fix | Delete
</li>
[805] Fix | Delete
<?php endfor; ?>
[806] Fix | Delete
</ul>
[807] Fix | Delete
<div class="page_break_module tf_w tf_rel tf_box" draggable="true">
[808] Fix | Delete
<div class="page_break_title"><?php _e('Page Break', 'themify'); ?></div>
[809] Fix | Delete
<button type="button" data-type="page_break" class="tf_plus_icon add_module_btn tb_disable_sorting tf_rel"></button>
[810] Fix | Delete
</div>
[811] Fix | Delete
</div>
[812] Fix | Delete
</div>
[813] Fix | Delete
<div class="panel_acc tf_w">
[814] Fix | Delete
<div class="panel_content panel_category" data-category="favorite"></div>
[815] Fix | Delete
</div>
[816] Fix | Delete
<?php foreach ($module_categories as $class => $category) : ?>
[817] Fix | Delete
<div class="panel_acc cat_<?php echo $class ?> tf_w" data-active="<?php echo ( $category['active'] || get_post_type() === Themify_Builder_Layouts::LAYOUT_PART_SLUG ) ? 1 : 0; ?>">
[818] Fix | Delete
<div class="panel_title"><h4><?php echo $category['label']; ?></h4></div>
[819] Fix | Delete
<div class="panel_content panel_category" data-category="<?php echo $class; ?>"></div>
[820] Fix | Delete
</div>
[821] Fix | Delete
<?php endforeach;?>
[822] Fix | Delete
[823] Fix | Delete
</div>
[824] Fix | Delete
<!-- /panel_modules_wrap -->
[825] Fix | Delete
<div class="panel_tab panel_rows tf_scrollbar tf_rel tf_box tf_h tf_clear tf_overflow tf_hide">
[826] Fix | Delete
<div class="dropdown_wrap tf_abs_t tf_hidden tb_float_xsmall">
[827] Fix | Delete
<span class="dropdown_label tf_rel tf_box" tabindex="-1"><?php _e('All', 'themify') ?></span>
[828] Fix | Delete
<!-- /tb_row_cat_filter_active -->
[829] Fix | Delete
<ul class="nav_tab tf_scrollbar tf_hidden">
[830] Fix | Delete
<li><?php _e('All', 'themify') ?></li>
[831] Fix | Delete
</ul>
[832] Fix | Delete
<!-- /tb_row_cat_filter -->
[833] Fix | Delete
</div>
[834] Fix | Delete
<!-- /tb_row_cat_filter_wrap -->
[835] Fix | Delete
<div class="predesigned_container tf_box tf_rel tf_h">
[836] Fix | Delete
<span class="tf_loader tf_abs_c"></span>
[837] Fix | Delete
</div>
[838] Fix | Delete
<!-- /predesigned_container -->
[839] Fix | Delete
</div>
[840] Fix | Delete
<div class="panel_tab panel_library tf_scrollbar tf_rel tf_box tf_h tf_clear tf_overflow tf_hide">
[841] Fix | Delete
<span class="dropdown_label tf_rel tf_box tf_hide" tabindex="-1"><?php _e('Rows', 'themify') ?></span>
[842] Fix | Delete
<ul class="nav_tab library_tab">
[843] Fix | Delete
<li class="current" data-type="row" data-hide="library_item" data-target="tb_item_row"><?php _e('Rows', 'themify') ?></li>
[844] Fix | Delete
<li data-type="module" data-hide="library_item" data-target="tb_item_module"><?php _e('Modules', 'themify') ?></li>
[845] Fix | Delete
<li data-type="part" data-hide="library_item" data-target="tb_item_part"><?php _e('Layout Parts', 'themify') ?></li>
[846] Fix | Delete
</ul>
[847] Fix | Delete
<!-- /library_tab -->
[848] Fix | Delete
<div class="library_container tf_textc tf_box tf_clear">
[849] Fix | Delete
<span class="tf_loader tf_abs_c"></span>
[850] Fix | Delete
</div>
[851] Fix | Delete
<!-- /library_container -->
[852] Fix | Delete
</div>
[853] Fix | Delete
<!-- /panel_library -->
[854] Fix | Delete
</div>
[855] Fix | Delete
</div>
[856] Fix | Delete
<button type="button" class="docked_min tf_box tf_hide"></button>
[857] Fix | Delete
</template>
[858] Fix | Delete
</div>
[859] Fix | Delete
<div id="tb_small_panel_root" class="tf_abs_t tf_hide tf_hidden">
[860] Fix | Delete
<template shadowrootmode="open">
[861] Fix | Delete
<link href="<?php echo THEMIFY_BUILDER_URI ?>/css/editor/components/small-panel.css?ver<?php echo THEMIFY_VERSION?>" as="style" rel="preload" onload="this.rel = 'stylesheet'">
[862] Fix | Delete
<?php do_action('tb_small_panel_styles')?>
[863] Fix | Delete
<div id="small_panel" class="panel<?php if($is_admin===true):?> backend<?php endif;?><?php echo $isGsPost?> tf_textc tf_box"></div>
[864] Fix | Delete
</template>
[865] Fix | Delete
</div>
[866] Fix | Delete
<?php if($isGsPost==='' && false):?>
[867] Fix | Delete
<div id="tb_tree_root" class="tf_abs_t tf_hide">
[868] Fix | Delete
<template shadowrootmode="open">
[869] Fix | Delete
<div class="wrapper">
[870] Fix | Delete
<div class="header">
[871] Fix | Delete
<button typ="button" class="minimize tf_rel"></button>
[872] Fix | Delete
<span class="title"><?php _e('Tree View','themify')?></span>
[873] Fix | Delete
<button typ="button" class="tf_close"></button>
[874] Fix | Delete
</div>
[875] Fix | Delete
<div class="content<?php if($is_admin===true):?> backend<?php endif;?> tf_scrollbar tf_box"></div>
[876] Fix | Delete
<div class="tb_resizable tb_resizable_st" data-axis="-y"></div>
[877] Fix | Delete
<div class="tb_resizable tb_resizable_e" data-axis="x"></div>
[878] Fix | Delete
<div class="tb_resizable tb_resizable_s" data-axis="y"></div>
[879] Fix | Delete
<div class="tb_resizable tb_resizable_w" data-axis="w"></div>
[880] Fix | Delete
<div class="tb_resizable tb_resizable_se" data-axis="se"></div>
[881] Fix | Delete
<div class="tb_resizable tb_resizable_we" data-axis="sw"></div>
[882] Fix | Delete
<div class="tb_resizable tb_resizable_nw" data-axis="nw"></div>
[883] Fix | Delete
<div class="tb_resizable tb_resizable_ne" data-axis="ne"></div>
[884] Fix | Delete
</div>
[885] Fix | Delete
</template>
[886] Fix | Delete
</div>
[887] Fix | Delete
<?php endif;?>
[888] Fix | Delete
<div id="tb_drop_zone" class="tf_abs tf_w tf_h tf_hide">
[889] Fix | Delete
<div class="tb_drop_file_wrap tf_abs_c tf_box">
[890] Fix | Delete
<?php _e('Drop Files','themify')?>
[891] Fix | Delete
</div>
[892] Fix | Delete
</div>
[893] Fix | Delete
<?php
[894] Fix | Delete
$eye= $clipboard=$files=$settings=$brush=$import=$export=$window=$move=$more=$edit=$save=$gs=$module_categories=$grip=null;
[895] Fix | Delete
$base=THEMIFY_BUILDER_DIR . '/img/row-frame/';
[896] Fix | Delete
if(is_readable($base)){
[897] Fix | Delete
$frames=Themify_Builder_Model::get_frame_layout();
[898] Fix | Delete
foreach($frames as $fr){
[899] Fix | Delete
?>
[900] Fix | Delete
<?php if($fr['value']!=='none' && $fr['value']!==''):?>
[901] Fix | Delete
<?php
[902] Fix | Delete
$path=pathinfo($fr['img']);
[903] Fix | Delete
if($path['extension']!=='svg'){
[904] Fix | Delete
continue;
[905] Fix | Delete
}
[906] Fix | Delete
$f=$base.$path['filename'];
[907] Fix | Delete
?>
[908] Fix | Delete
<script type="text/template" id="tmpl-frame_<?php echo $fr['value']?>">
[909] Fix | Delete
<?php echo file_get_contents($f.'.'.$path['extension']);?>
[910] Fix | Delete
</script>
[911] Fix | Delete
<script type="text/template" id="tmpl-frame_<?php echo $fr['value']?>-l">
[912] Fix | Delete
<?php echo file_get_contents($f.'-l.'.$path['extension']);?>
[913] Fix | Delete
</script>
[914] Fix | Delete
<?php endif;?>
[915] Fix | Delete
<?php
[916] Fix | Delete
}
[917] Fix | Delete
$frames=null;
[918] Fix | Delete
}
[919] Fix | Delete
$base=null;
[920] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function