58 $this->CachedMultyFS =
get_package(
'cached_multy_fs' ,
'last' , __FILE__ );
92 $Code = $this->CachedMultyFS->get_template( __FILE__ ,
'accordeon_section.tpl' );
93 $Code = str_replace(
'{title}' , $Settings->get_setting(
'title' ) , $Code );
129 $TabControl = $this->CachedMultyFS->get_template( __FILE__ ,
'tab_control.tpl' );
131 $Selector = $Settings->get_setting(
'selector' , md5( microtime(
true ) ) );
132 $id = $Settings->get_setting(
'id' , $Selector );
134 return( str_replace(
'{id}' , $id , $TabControl ) );
136 catch( Exception $e )
168 $Settings->get_setting(
'id' );
169 $Settings->get_setting(
'content_id' );
171 $Settings->set_undefined(
'title' ,
'title' );
172 $Settings->set_undefined(
'index' , -1 );
173 $Settings->set_undefined(
'closable' ,
'true' );
175 $Tab = $this->CachedMultyFS->get_template( __FILE__ ,
'add_tab.tpl' );
176 $Data = $Settings->get_raw_settings();
180 catch( Exception $e )
212 $Tab = $this->CachedMultyFS->get_template( __FILE__ ,
'add_iframe_tab.tpl' );
213 $Selector = $Settings->get_setting(
'selector' ,
'' );
215 array(
'{id}' ,
'{url}' ,
'{title}' ,
'{index}' ,
'{height}' ,
'{closable}' ) ,
217 $Settings->get_setting(
'id' , $Selector ) , $Settings->get_setting(
'url' ) ,
218 $Settings->get_setting(
'title' ,
'title' ) , $Settings->get_setting(
'index' , -1 ) ,
219 $Settings->get_setting(
'height' ,
'auto' ) ,
220 $Settings->get_setting(
'closable' ,
false ) !==
false ?
'true' :
'false'
225 catch( Exception $e )