Changeset 1027616
- Timestamp:
- 11/18/2014 12:17:15 AM (11 years ago)
- Location:
- post-slides
- Files:
-
- 22 added
- 3 edited
-
tags/1.0.1/font-awesome (added)
-
tags/1.0.1/font-awesome/css (added)
-
tags/1.0.1/font-awesome/css/font-awesome.min.css (added)
-
tags/1.0.1/font-awesome/fonts (added)
-
tags/1.0.1/font-awesome/fonts/FontAwesome.otf (added)
-
tags/1.0.1/font-awesome/fonts/fontawesome-webfont.eot (added)
-
tags/1.0.1/font-awesome/fonts/fontawesome-webfont.svg (added)
-
tags/1.0.1/font-awesome/fonts/fontawesome-webfont.ttf (added)
-
tags/1.0.1/font-awesome/fonts/fontawesome-webfont.woff (added)
-
tags/1.0.1/inc (added)
-
tags/1.0.1/inc/post-slides-backend.php (added)
-
tags/1.0.1/inc/post-slides-frontend.php (added)
-
tags/1.0.1/owl (added)
-
tags/1.0.1/owl/owl.carousel.css (added)
-
tags/1.0.1/owl/owl.carousel.js (added)
-
tags/1.0.1/owl/owl.carousel.min.js (added)
-
tags/1.0.1/skins (added)
-
tags/1.0.1/skins/css (added)
-
tags/1.0.1/skins/css/skin-default.css (added)
-
tags/1.0.1/skins/css/skin-single.css (added)
-
tags/1.0.1/skins/default.php (added)
-
tags/1.0.1/skins/single.php (added)
-
trunk/inc/post-slides-backend.php (modified) (5 diffs)
-
trunk/skins/default.php (modified) (2 diffs)
-
trunk/skins/single.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post-slides/trunk/inc/post-slides-backend.php
r1026979 r1027616 104 104 $margin = "15"; 105 105 } 106 $stage Padding = get_option('stagePadding');107 if(empty($stage Padding)){108 $stage Padding = "0";106 $stage_padding = get_option('stage_padding'); 107 if(empty($stage_padding)){ 108 $stage_padding = "0"; 109 109 } 110 110 $nav = get_option('nav'); … … 120 120 $autoplay = "false"; 121 121 } 122 $autoplay Timeout = get_option('autoplayTimeout');123 if(empty($autoplay Timeout)){124 $autoplay Timeout = "5000";125 } 126 $autoplay HoverPause = get_option('autoplayHoverPause');127 if(empty($autoplay HoverPause)){128 $autoplay HoverPause = "false";122 $autoplay_timeout = get_option('autoplay_timeout'); 123 if(empty($autoplay_timeout)){ 124 $autoplay_timeout = "5000"; 125 } 126 $autoplay_hover_pause = get_option('autoplay_hover_pause'); 127 if(empty($autoplay_hover_pause)){ 128 $autoplay_hover_pause = "false"; 129 129 } 130 130 ?> … … 276 276 </td> 277 277 <td> 278 <input type="text" name="stage Padding" value="<?= $stagePadding; ?>" class='small-input'><span class="px">px</span>278 <input type="text" name="stage_padding" value="<?= $stage_padding; ?>" class='small-input'><span class="px">px</span> 279 279 </td> 280 280 </tr> … … 338 338 <td>Autoplay Timeout:</td> 339 339 <td> 340 <input type="text" name="autoplay Timeout" value="<?= $autoplayTimeout; ?>" class='small-input'>340 <input type="text" name="autoplay_timeout" value="<?= $autoplay_timeout; ?>" class='small-input'> 341 341 </td> 342 342 </tr> … … 344 344 <td>Autoplay Hover Pause:</td> 345 345 <td> 346 <input type="radio" name="autoplay HoverPause" value="true" <?php if($autoplayHoverPause == 'true') echo 'checked="checked"'; ?>>true347 <input type="radio" name="autoplay HoverPause" value="false" <?php if($autoplayHoverPause == 'false') echo 'checked="checked"'; ?>>false346 <input type="radio" name="autoplay_hover_pause" value="true" <?php if($autoplay_hover_pause == 'true') echo 'checked="checked"'; ?>>true 347 <input type="radio" name="autoplay_hover_pause" value="false" <?php if($autoplay_hover_pause == 'false') echo 'checked="checked"'; ?>>false 348 348 </td> 349 349 </tr> -
post-slides/trunk/skins/default.php
r1026979 r1027616 23 23 $GLOBALS['global_skin_attrs_default']['center'] 24 24 $GLOBALS['global_skin_attrs_default']['margin'] 25 $GLOBALS['global_skin_attrs_default']['stage_padding']26 25 $GLOBALS['global_skin_attrs_default']['nav'] 27 26 $GLOBALS['global_skin_attrs_default']['dots'] … … 58 57 array_splice($words, $GLOBALS['global_skin_attrs_default']['excerpt_length']); 59 58 $temp_excerpt = implode(' ', $words); 60 $temp_excerpt .= $GLOBALS['global_skin_attrs_default']['excerpt_ length'];59 $temp_excerpt .= $GLOBALS['global_skin_attrs_default']['excerpt_tail']; 61 60 } 62 61 -
post-slides/trunk/skins/single.php
r1026979 r1027616 9 9 10 10 // Get the global variable name 11 12 13 11 14 12 /* ---------------------------------- … … 27 25 $GLOBALS['global_skin_attrs_single']['center'] 28 26 $GLOBALS['global_skin_attrs_single']['margin'] 29 $GLOBALS['global_skin_attrs_single']['stage_padding']30 27 $GLOBALS['global_skin_attrs_single']['nav'] 31 28 $GLOBALS['global_skin_attrs_single']['dots'] … … 62 59 array_splice($words, $GLOBALS['global_skin_attrs_single']['excerpt_length']); 63 60 $temp_excerpt = implode(' ', $words); 64 $temp_excerpt .= $GLOBALS['global_skin_attrs_single']['excerpt_ length'];61 $temp_excerpt .= $GLOBALS['global_skin_attrs_single']['excerpt_tail']; 65 62 } 66 63
Note: See TracChangeset
for help on using the changeset viewer.