Changeset 1157671
- Timestamp:
- 05/11/2015 05:09:14 AM (11 years ago)
- Location:
- easy-bootstrap-shortcodes
- Files:
-
- 12 edited
-
tags/4.0.0/README.txt (modified) (1 diff)
-
tags/4.0.0/osc_bootstrap_shortcode.php (modified) (3 diffs)
-
tags/4.0.0/shortcode/servicebox/plugin_shortcode.php (modified) (2 diffs)
-
tags/4.0.0/shortcode/slider/plugin_shortcode.php (modified) (3 diffs)
-
tags/4.0.0/styles/ebs-dstyle.php (modified) (2 diffs)
-
tags/4.0.0/styles/ebs_dynamic_css.php (modified) (2 diffs)
-
trunk/README.txt (modified) (1 diff)
-
trunk/osc_bootstrap_shortcode.php (modified) (3 diffs)
-
trunk/shortcode/servicebox/plugin_shortcode.php (modified) (2 diffs)
-
trunk/shortcode/slider/plugin_shortcode.php (modified) (3 diffs)
-
trunk/styles/ebs-dstyle.php (modified) (2 diffs)
-
trunk/styles/ebs_dynamic_css.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-bootstrap-shortcodes/tags/4.0.0/README.txt
r1142973 r1157671 150 150 >= Note : we have removed the Line Separator, Dropcaps, Youtube & Vimeo video, Boxesframes, Horizontal Rule, Testimonial, Section Heading, Social, Lead,Page Header, Highlights shortcodes as these are PRO version features, which were committed to free version by mistake. = 151 151 152 = 4.4.0 = 153 154 * [Fixes] Session issue patch provided by Vloo. 155 152 156 = 4.3.9 = 153 157 -
easy-bootstrap-shortcodes/tags/4.0.0/osc_bootstrap_shortcode.php
r1142973 r1157671 5 5 Plugin URI: http://www.oscitasthemes.com 6 6 Description: Add bootstrap 3.0.3 styles to your theme by wordpress editor shortcode buttons. 7 Version: 4. 3.97 Version: 4.4.0 8 8 Author: oscitas 9 9 Author URI: http://www.oscitasthemes.com … … 174 174 update_option( 'EBS_CUSTOM_CSS', isset($_POST['ebs_custom_css'])?$_POST['ebs_custom_css']:'' ); 175 175 update_option( 'EBS_INCLUDE_FA', isset($_POST['fa_icon'])?$_POST['fa_icon']:'' ); 176 ebs_session_start(); 176 177 $_SESSION['ebs_dynamic_css'] =$_POST['ebs_custom_css']; 178 session_write_close(); 177 179 update_option( 'EBS_SHORTCODE_PREFIX', isset($_POST['shortcode_prefix'])?$_POST['shortcode_prefix']:'' ); 178 180 … … 286 288 */ 287 289 function osc_add_dynamic_css(){ 290 ebs_session_start(); 288 291 $_SESSION['ebs_dynamic_css'] = get_option('EBS_CUSTOM_CSS',''); 292 session_write_close(); 289 293 wp_enqueue_style('ebs_dynamic_css', plugins_url('/styles/ebs_dynamic_css.php', __FILE__)); 290 294 -
easy-bootstrap-shortcodes/tags/4.0.0/shortcode/servicebox/plugin_shortcode.php
r925652 r1157671 5 5 * ********************************************************* */ 6 6 $_ebsp_servicebox=array(); 7 7 ebs_session_start(); 8 8 $_SESSION['ebs_servicebox_css']=array(); 9 session_write_close(); 9 10 function osc_theme_servicebox($params, $content = null) { 10 11 global $_ebsp_servicebox; … … 85 86 ; 86 87 }'; 88 ebs_session_start(); 87 89 $_SESSION['ebs_servicebox_css'][]= 'ebs_servicebox_css_id_'.$id; 88 90 $_SESSION['ebs_servicebox_css_id_'.$id]=$style; 91 session_write_close(); 89 92 wp_enqueue_style('ebs-dstyle',EBS_PLUGIN_URL.'styles/ebs-dstyle.php'); 90 93 return $out; -
easy-bootstrap-shortcodes/tags/4.0.0/shortcode/slider/plugin_shortcode.php
r925652 r1157671 13 13 $_oscitas_slider = array('current_id'=>0); 14 14 } 15 if(!session_id()){ 16 @session_start(); 17 } 15 ebs_session_start(); 18 16 if(!isset($_SESSION['ebs_slider_css'])){ 19 17 $_SESSION['ebs_slider_css']=array(); 20 18 } 19 session_write_close(); 21 20 extract(shortcode_atts(array( 22 21 'id' => count($_oscitas_slider), … … 62 61 63 62 $output .= '</div>'; 63 ebs_session_start(); 64 64 $_SESSION['ebs_slider_css'][$id]=$id; 65 65 $_SESSION['ebs_slider_each_'.$id]=" … … 89 89 } 90 90 "; 91 91 session_write_close(); 92 92 } 93 93 $_oscitas_slider['current_id'] -= 1; -
easy-bootstrap-shortcodes/tags/4.0.0/styles/ebs-dstyle.php
r893836 r1157671 2 2 header("Content-type: text/css"); 3 3 if(!session_id()) 4 session_start();4 ebs_session_start(); 5 5 $css_ebs=<<<EOF 6 6 .osc_servicebox { … … 45 45 } 46 46 } 47 ?> 47 48 session_write_close(); -
easy-bootstrap-shortcodes/tags/4.0.0/styles/ebs_dynamic_css.php
r1142973 r1157671 2 2 header("Content-type: text/css"); 3 3 if(!session_id()) 4 session_start();4 ebs_session_start(); 5 5 //echo $_SESSION['ebs_dynamic_css']; 6 6 if(isset($_SESSION['ebs_dynamic_css'])){ … … 13 13 } 14 14 } 15 16 session_write_close(); -
easy-bootstrap-shortcodes/trunk/README.txt
r1142973 r1157671 150 150 >= Note : we have removed the Line Separator, Dropcaps, Youtube & Vimeo video, Boxesframes, Horizontal Rule, Testimonial, Section Heading, Social, Lead,Page Header, Highlights shortcodes as these are PRO version features, which were committed to free version by mistake. = 151 151 152 = 4.4.0 = 153 154 * [Fixes] Session issue patch provided by Vloo. 155 152 156 = 4.3.9 = 153 157 -
easy-bootstrap-shortcodes/trunk/osc_bootstrap_shortcode.php
r1142973 r1157671 5 5 Plugin URI: http://www.oscitasthemes.com 6 6 Description: Add bootstrap 3.0.3 styles to your theme by wordpress editor shortcode buttons. 7 Version: 4. 3.97 Version: 4.4.0 8 8 Author: oscitas 9 9 Author URI: http://www.oscitasthemes.com … … 174 174 update_option( 'EBS_CUSTOM_CSS', isset($_POST['ebs_custom_css'])?$_POST['ebs_custom_css']:'' ); 175 175 update_option( 'EBS_INCLUDE_FA', isset($_POST['fa_icon'])?$_POST['fa_icon']:'' ); 176 ebs_session_start(); 176 177 $_SESSION['ebs_dynamic_css'] =$_POST['ebs_custom_css']; 178 session_write_close(); 177 179 update_option( 'EBS_SHORTCODE_PREFIX', isset($_POST['shortcode_prefix'])?$_POST['shortcode_prefix']:'' ); 178 180 … … 286 288 */ 287 289 function osc_add_dynamic_css(){ 290 ebs_session_start(); 288 291 $_SESSION['ebs_dynamic_css'] = get_option('EBS_CUSTOM_CSS',''); 292 session_write_close(); 289 293 wp_enqueue_style('ebs_dynamic_css', plugins_url('/styles/ebs_dynamic_css.php', __FILE__)); 290 294 -
easy-bootstrap-shortcodes/trunk/shortcode/servicebox/plugin_shortcode.php
r925652 r1157671 5 5 * ********************************************************* */ 6 6 $_ebsp_servicebox=array(); 7 7 ebs_session_start(); 8 8 $_SESSION['ebs_servicebox_css']=array(); 9 session_write_close(); 9 10 function osc_theme_servicebox($params, $content = null) { 10 11 global $_ebsp_servicebox; … … 85 86 ; 86 87 }'; 88 ebs_session_start(); 87 89 $_SESSION['ebs_servicebox_css'][]= 'ebs_servicebox_css_id_'.$id; 88 90 $_SESSION['ebs_servicebox_css_id_'.$id]=$style; 91 session_write_close(); 89 92 wp_enqueue_style('ebs-dstyle',EBS_PLUGIN_URL.'styles/ebs-dstyle.php'); 90 93 return $out; -
easy-bootstrap-shortcodes/trunk/shortcode/slider/plugin_shortcode.php
r925652 r1157671 13 13 $_oscitas_slider = array('current_id'=>0); 14 14 } 15 if(!session_id()){ 16 @session_start(); 17 } 15 ebs_session_start(); 18 16 if(!isset($_SESSION['ebs_slider_css'])){ 19 17 $_SESSION['ebs_slider_css']=array(); 20 18 } 19 session_write_close(); 21 20 extract(shortcode_atts(array( 22 21 'id' => count($_oscitas_slider), … … 62 61 63 62 $output .= '</div>'; 63 ebs_session_start(); 64 64 $_SESSION['ebs_slider_css'][$id]=$id; 65 65 $_SESSION['ebs_slider_each_'.$id]=" … … 89 89 } 90 90 "; 91 91 session_write_close(); 92 92 } 93 93 $_oscitas_slider['current_id'] -= 1; -
easy-bootstrap-shortcodes/trunk/styles/ebs-dstyle.php
r882228 r1157671 2 2 header("Content-type: text/css"); 3 3 if(!session_id()) 4 session_start();4 ebs_session_start(); 5 5 $css_ebs=<<<EOF 6 6 .osc_servicebox { … … 45 45 } 46 46 } 47 ?> 47 48 session_write_close(); -
easy-bootstrap-shortcodes/trunk/styles/ebs_dynamic_css.php
r1142973 r1157671 2 2 header("Content-type: text/css"); 3 3 if(!session_id()) 4 session_start();4 ebs_session_start(); 5 5 //echo $_SESSION['ebs_dynamic_css']; 6 6 if(isset($_SESSION['ebs_dynamic_css'])){ … … 13 13 } 14 14 } 15 16 session_write_close();
Note: See TracChangeset
for help on using the changeset viewer.