Changeset 1015052
- Timestamp:
- 10/28/2014 02:25:39 AM (11 years ago)
- Location:
- rsvp-me/trunk
- Files:
-
- 6 edited
-
includes/rsvpme_events_post_type.php (modified) (1 diff)
-
includes/rsvpme_functions.php (modified) (1 diff)
-
js/rsvp_me.js (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
-
rsvpme.php (modified) (2 diffs)
-
vendors/foomanchu.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rsvp-me/trunk/includes/rsvpme_events_post_type.php
r959046 r1015052 340 340 $content = $foomanchu->render($template, $event, false); 341 341 342 die($content);343 342 return $content; 344 343 } -
rsvp-me/trunk/includes/rsvpme_functions.php
r959046 r1015052 220 220 $options[] = $calendar_options; 221 221 222 223 222 // load values or set defaults 224 225 223 for($i=0; $i < count($options); $i++){ 226 224 for($j = 0; $j < count($options[$i]['fields']); $j++){ -
rsvp-me/trunk/js/rsvp_me.js
r959046 r1015052 10 10 } 11 11 var rsvpMe; // put our namespace in global scope 12 console.log('hi'); 12 13 (function($){ 13 14 … … 250 251 251 252 function renderTemplate(tmpl, obj){ 253 console.log('asdfasdfasdfsdf'); 254 console.log(tmpl); 255 252 256 var reg, 253 maxattempts = 50,254 i = 0;257 maxattempts = 50, 258 i = 0; 255 259 256 260 var ifmatches = tmpl.match(/\[{2}#if(.[^\]]+)\]\](.*)\[{2}\/if\]{2}/gmi); … … 295 299 296 300 tmpl = tmpl.replace(/\[\[.+\]\]/g, ''); 297 298 301 return tmpl; 299 300 302 } 301 302 303 304 303 305 304 function stripslashes (str) { -
rsvp-me/trunk/readme.txt
r935808 r1015052 4 4 Tags: rsvp plugin, rsvp widget, event, rsvp events, rsvp calendar, Events, Event Calendar, Event Widget, widget, Event, Event plugin, organize, plan, venue, catering, planning, planner, organization, wedding, guestlist, reserve, reservations, reservation, byob 5 5 Requires at least: 2.0.2 6 Tested up to: 3.8.27 Stable tag: 1.9. 86 Tested up to: 4.0 7 Stable tag: 1.9.9 8 8 9 9 == Description == -
rsvp-me/trunk/rsvpme.php
r959046 r1015052 4 4 Plugin URI: http://www.micahblu.com/products/rsvp-me 5 5 Description: A Robust RSVP plugin 6 Version: 1.9. 86 Version: 1.9.9 7 7 Author: Micah Blu 8 8 Author URI: http://www.micahblu.com … … 10 10 */ 11 11 12 define('RSVP_ME_VERSION', '1.9. 7');12 define('RSVP_ME_VERSION', '1.9.9'); 13 13 14 14 define('RSVP_ME_FILE_PATH', dirname(__FILE__)); -
rsvp-me/trunk/vendors/foomanchu.php
r959046 r1015052 41 41 */ 42 42 public function __construct($options = array()){ 43 43 44 $this->PartialsPath = isset($options['partials_path']) ? $options['partials_path'] : dirname(__FILE__); 44 45 $this->Ext = isset($options['template_ext']) ? $options['template_ext'] : 'fmc'; … … 76 77 if($condition == $field) $match = true; 77 78 } 78 echo $statements[0][$i];79 //echo $statements[0][$i]; 79 80 if($match){ 80 81 $template = str_replace($statements[0][$i], $statements[3][$i], $template);
Note: See TracChangeset
for help on using the changeset viewer.