Пример #1
0
 public function mZ_mindbody_staff_listing($atts, $account = 0)
 {
     require_once MZ_MINDBODY_SCHEDULE_DIR . 'inc/mz_mbo_init.inc';
     $options = get_option('mz_mindbody_options', 'Option Not Set');
     $mz_cache_reset = isset($options['mz_mindbody_clear_cache']) ? "on" : "off";
     $mz_staff_cache = "mz_staff_cache";
     // optionally pass in a type parameter. Defaults to week.
     extract(shortcode_atts(array('account' => '0'), $atts));
     if ($mz_cache_reset == "on") {
         delete_transient($mz_staff_cache);
     }
     if (false === ($staff = get_transient($mz_staff_cache))) {
         $mb = instantiate_mbo_API();
         if ($account == 0) {
             //Send the timeframe to the GetClasses class, unless already cached
             $staff = $mb->GetStaff();
         } else {
             $mb->sourceCredentials['SiteIDs'][0] = $account;
             $staff = $mb->GetStaff();
         }
     }
     $return = '';
     $mz_staff_list = $staff['GetStaffResult']['StaffMembers']['Staff'];
     // trying to allow sort order from within MBO - not working
     //usort($mz_staff_list, $this->sortById());;
     $mz_empty_tags_pattern = "/<[^\\/>]*>(\\s|xC2xA0|&nbsp;)*<\\/[^>]*>/";
     foreach ($mz_staff_list as $staff_member) {
         if (!empty($staff_member['Bio']) && !empty($staff_member['ImageURL'])) {
             $mz_staff_name = $staff_member['Name'];
             $mz_staff_bio = $staff_member['Bio'];
             $mz_staff_bio = str_replace($mz_empty_tags_pattern, '', $mz_staff_bio);
             $mz_staff_image = $staff_member['ImageURL'];
             $mz_staff_id = $staff_member['ID'];
             $return .= '<div class="mz_mbo_staff_profile clearfix">';
             $return .= '<div class="mz_mbo_staff_caption">';
             $return .= '<h3>' . $mz_staff_name . '</h3>';
             $return .= '</div>';
             $return .= '<div class="mz_mbo_staff_bio">';
             $return .= '<div class="mz_mbo_staff_photo">';
             $return .= '<img src="' . $mz_staff_image . '" alt="">';
             $return .= '<p class="mz_mbo_staff_schedule">';
             $return .= '<a href="http://clients.mindbodyonline.com/ws.asp?studioid=' . $options['mz_mindbody_siteID'] . '&stype=-7&sView=week&sTrn=' . $mz_staff_id . '" class="btn btn-info">See ' . $mz_staff_name . '&apos;s Schedule</a>';
             $return .= '</p>';
             $return .= '</div>';
             $return .= '</div>';
             $return .= $mz_staff_bio;
             $return .= '</div>';
             $return .= '<hr/>';
         }
     }
     return $return;
 }
Пример #2
0
 public function mZ_mindbody_show_events($atts, $account = 0)
 {
     add_action('wp_loaded', function () {
         require_once MZ_MINDBODY_SCHEDULE_DIR . 'inc/mz_mbo_init.inc';
         $mz_mbo = new MZ_MBO_Init();
     });
     //global $add_mz_ajax_script;
     //$add_mz_ajax_script = true;
     // optionally pass in a type parameter. Defaults to week.
     $atts = shortcode_atts(array('location' => '1', 'account' => '0'), $atts);
     $location = $atts['location'];
     $account = $atts['account'];
     $options = get_option('mz_mindbody_options');
     // grab session type IDs for events
     $mz_sessions = array($options['mz_mindbody_eventID']);
     $return = '';
     $mz_date = empty($_GET['mz_date']) ? date_i18n('Y-m-d') : mz_validate_date($_GET['mz_date']);
     // only make API call if we have sessions set
     if (!empty($mz_sessions) && $mz_sessions[0] != 0) {
         $mz_timeframe = array_slice(mz_getDateRange($mz_date, $mz_event_calendar_duration), 0, 1);
         //While we still need to support php 5.2 and can't use [0] on above
         $mz_timeframe = array_pop($mz_timeframe);
         $mz_timeframe = array_merge($mz_timeframe, array('SessionTypeIDs' => $mz_sessions));
         // START caching configuration
         $mz_events_cache = "mz_events_cache";
         $mz_cache_reset = isset($options['mz_mindbody_clear_cache']) ? "on" : "off";
         if ($mz_cache_reset == "on") {
             delete_transient($mz_events_cache);
         }
         $mz_event_data = get_transient($mz_events_cache);
         if (false === $mz_event_data) {
             $mb = instantiate_mbo_API();
             if ($account == 0) {
                 $mz_schedule_data = $mb->GetClasses($mz_timeframe);
             } else {
                 $mb->sourceCredentials['SiteIDs'][0] = $account;
                 $mz_schedule_data = $mb->GetClasses($mz_timeframe);
             }
             $mz_event_data = $mb->GetClasses($mz_timeframe);
         }
         //Cache the mindbody call for 1 hour
         // TODO make cache timeout configurable.
         set_transient($mz_events_cache, $mz_event_data, 60 * 60);
         // END caching configuration
         // keep this here
         //$return .= $mb->debug();
         if (!empty($mz_event_data['GetClassesResult']['Classes']['Class'])) {
             $classes = $this->makeNumericArray($mz_event_data['GetClassesResult']['Classes']['Class']);
             $classes = sortClassesByDate($classes, $time_format);
             $number_of_events = count($classes);
             $return .= '<p>' . $mz_event_calendar_duration . ' ' . __('Day Event Calendar');
             $return .= ' ' . date_i18n($date_format, strtotime($mz_timeframe['StartDateTime']));
             $return .= ' - ';
             $return .= date_i18n($date_format, strtotime($mz_timeframe['EndDateTime'])) . '</p>';
             if ($number_of_events >= 1) {
                 //TODO Make this work - displaying number 20 with one event (correct on first page with 5 events).
                 //$return .= ': ' . $number_of_events . ' '.__('event(s)').'</p>';
                 $return .= mz_mbo_schedule_nav($mz_date, "Events", $mz_event_calendar_duration);
                 $return .= '<div class="mz_mindbody_events">';
                 $return .= '<table class="table mz_mindbody_events">';
                 $globals = new Global_Strings();
                 $global_strings = $globals->translate_them();
                 foreach ($classes as $classDate => $classes) {
                     foreach ($classes as $class) {
                         if (!($class['IsCanceled'] == 'TRUE' && $class['HideCancel'] == 'TRUE')) {
                             $sDate = date_i18n('m/d/Y', strtotime($class['StartDateTime']));
                             $sLoc = $class['Location']['ID'];
                             $studioid = $class['Location']['SiteID'];
                             $sclassid = $class['ID'];
                             // why is this hardcoded?
                             $sType = -7;
                             $isAvailable = $class['IsAvailable'];
                             if (empty($class['ClassDescription']['ImageURL'])) {
                                 $image = '';
                             } else {
                                 $image = '<img class="mz_mindbody_events_img" src="' . $class['ClassDescription']['ImageURL'] . '">';
                             }
                             $sTG = $class['ClassDescription']['Program']['ID'];
                             $eventLinkURL = "https://clients.mindbodyonline.com/ws.asp?sDate={$sDate}&amp;sLoc={$sLoc}&amp;sTG={$sTG}&amp;sType={$sType}&amp;sclassid={$sclassid}&amp;studioid={$studioid}";
                             $className = $class['ClassDescription']['Name'];
                             $startDateTime = date_i18n($date_format . ' ' . $time_format, strtotime($class['StartDateTime']));
                             $classDescription = $class['ClassDescription']['Description'];
                             $endDateTime = date_i18n($date_format . ' ' . $time_format, strtotime($class['EndDateTime']));
                             $staffName = $class['Staff']['Name'];
                             $ItemType = $class['ClassDescription']['Program']['Name'];
                             $enrolmentType = $class['ClassDescription']['Program']['ScheduleType'];
                             $day_and_date = date_i18n("D F d", strtotime($classDate));
                             $return .= '<tr class="mz_description_holder"><td>';
                             $return .= "<h3>{$className}</h3>";
                             $clientID = isset($_SESSION['GUID']) ? $_SESSION['client']['ID'] : '';
                             $add_to_class_nonce = wp_create_nonce('mz_MBO_add_to_class_nonce');
                             if ($clientID == '') {
                                 $return .= $isAvailable ? '<br/><a class="btn mz_add_to_class" href="' . home_url() . '/login">' . __('Login to Sign-up', 'mz-mindbody-api') . '</a>' : '';
                             } else {
                                 $return .= $isAvailable ? '<br/><a id="mz_add_to_class" class="btn mz_add_to_class"' . ' data-nonce="' . $add_to_class_nonce . '" data-classID="' . $sclassid . '" data-clientID="' . $clientID . '">' . '<span class="signup">' . $global_strings['sign_up'] . '</span><span class="count" style="display:none">0</span></a>' : '';
                             }
                             $return .= '<br/><div id="visitMBO" class="btn visitMBO" style="display:none">';
                             $return .= '<a href="' . $eventLinkURL . '" target="_blank">Manage on MindBody Site</a></div>';
                             $return .= '<p class="mz_event_staff_name">' . $global_strings['with'] . $staffName . '</p>';
                             $return .= '<h4 class="mz_event_staff">' . $day_and_date . ', ' . date_i18n('g:i a', strtotime($startDateTime)) . ' - ';
                             $return .= date_i18n('g:i a', strtotime($endDateTime)) . '</h4>';
                             $return .= '<div class="mz_mindbody_event_description">';
                             $return .= $image;
                             $return .= "<p>{$classDescription}</p>";
                             $return .= "</div>";
                             $return .= '</td></tr>';
                         }
                     }
                 }
                 $return .= '</table></div>';
             } else {
                 $return .= '<h3>' . __('No events published this period.', 'mz-mindbody-api') . '</h3>';
             }
         } else {
             if (!empty($mz_event_data['GetClassesResult']['Message'])) {
                 $return .= $mz_event_data['GetClassesResult']['Message'];
             } else {
                 $return .= '<p>' . sprintf(_n('%1$s Day Event Calendar', '%1$s Day Event Calendar', 'mz-mindbody-api'), $mz_event_calendar_duration);
                 $return .= ' ' . date_i18n($mz_date_display, strtotime($mz_timeframe['StartDateTime']));
                 $return .= ' - ';
                 $return .= date_i18n($mz_date_display, strtotime($mz_timeframe['EndDateTime']));
                 $return .= '<h3>' . __('No events published', 'mz-mindbody-api') . '. </h3>';
                 //$return .= '<pre>'.print_r($mz_event_data,1).'</pre>';
             }
         }
         //EOF If Results/Else
     } else {
         $return .= '<h2>' . __('Error: MBO Event Type IDs must be set in Admin Panel', 'mz-mindbody-api') . '</h2>';
     }
     $return .= mz_mbo_schedule_nav($mz_date, _n("Event", "Events", 'mz-mindbody-api'), $mz_event_calendar_duration);
     return $return;
 }
    public function mZ_mindbody_show_schedule($atts, $account = 0)
    {
        require_once MZ_MINDBODY_SCHEDULE_DIR . '/lib/html_table.class.php';
        global $add_mz_ajax_script;
        $add_mz_ajax_script = true;
        // optionally pass in a type parameter. Defaults to week.
        $atts = shortcode_atts(array('type' => 'week', 'location' => '1', 'account' => '0', 'filter' => '0', 'grid' => '0', 'hide' => ''), $atts);
        $type = $atts['type'];
        $location = $atts['location'];
        $account = $atts['account'];
        $filter = $atts['filter'];
        $grid = $atts['grid'];
        if ($grid == 1 && $type == 'day') {
            return '<div style="color:red"><h2>' . __('Grid Calendar Incompatible with Single Day Mode!', 'mz_mndbody_api') . '</h2></div>';
        }
        if ($grid == 0) {
            $mz_date = empty($_GET['mz_date']) ? date_i18n('Y-m-d') : mz_validate_date($_GET['mz_date']);
        } else {
            $hide = explode(', ', $atts['hide']);
            $mz_date = empty($_GET['mz_date']) ? date_i18n('Y-m-d', strtotime('last monday')) : mz_validate_date($_GET['mz_date']);
        }
        if ($type == __('day', 'mz-mindbody-api')) {
            $mz_timeframe = array_slice(mz_getDateRange($mz_date, 1), 0, 1);
            $mz_schedule_cache = "mz_schedule_day_cache_" . mt_rand(1, 10);
        } else {
            $mz_timeframe = array_slice(mz_getDateRange($mz_date, 7), 0, 1);
            $mz_schedule_cache = "mz_schedule_week_cache_" . mt_rand(1, 10);
        }
        //While we still need to support php 5.2 and can't use [0] on above
        $mz_timeframe = array_pop($mz_timeframe);
        // START caching
        $mz_cache_reset = isset($options['mz_mindbody_clear_cache']) ? "on" : "off";
        if ($mz_cache_reset == "on") {
            delete_transient($mz_schedule_cache);
        }
        $mz_schedule_data = get_transient($mz_schedule_cache);
        mz_pr('' == $mz_schedule_data);
        if (isset($_GET['mz_date']) || '' == $mz_schedule_data) {
            //Send the timeframe to the GetClasses class, unless already cached
            $mb = instantiate_mbo_API();
            if ($account == 0) {
                $mz_schedule_data = $mb->GetClasses($mz_timeframe);
            } else {
                $mb->sourceCredentials['SiteIDs'][0] = $account;
                $mz_schedule_data = $mb->GetClasses($mz_timeframe);
            }
            //Cache the mindbody call for 24 hours
            // TODO make cache timeout configurable.
            set_transient($mz_schedule_cache, $mz_schedule_data, 60 * 60 * 24);
        }
        $return = '';
        if (!empty($mz_schedule_data['GetClassesResult']['Classes']['Class'])) {
            $mz_days = $this->makeNumericArray($mz_schedule_data['GetClassesResult']['Classes']['Class']);
            if ($grid == 0) {
                $mz_days = sortClassesByDate($mz_days, $this->time_format, $location);
            } else {
                $mz_days = sortClassesByTimeThenDay($mz_days, $this->time_format, $location);
            }
            $return .= '<div id="mz_mbo_schedule" class="mz_mbo_schedule">';
            if ($type == __('week', 'mz-mindbody-api')) {
                $return .= mz_mbo_schedule_nav($mz_date, __('Week', 'mz-mindbody-api'));
            }
            if ($filter == 1) {
                $tbl = new HTML_Table('', 'mz-schedule-filter');
            } else {
                $tbl = new HTML_Table('', 'mz-schedule-table');
            }
            if ($grid == 0) {
                foreach ($mz_days as $classDate => $mz_classes) {
                    $tbl->addRow('header');
                    // arguments: cell content, class, type (default is 'data' for td, pass 'header' for th)
                    // can include associative array of optional additional attributes
                    $tbl->addCell(date_i18n($this->mz_date_display, strtotime($classDate)), '', 'header', array('scope' => 'header'));
                    $tbl->addCell(__('Class Name', 'mz-mindbody-api'), '', 'header', array('scope' => 'header'));
                    $tbl->addCell(__('Instructor', 'mz-mindbody-api'), '', 'header', array('scope' => 'header'));
                    $tbl->addCell(__('Class Type', 'mz-mindbody-api'), '', 'header', array('scope' => 'header'));
                    $tbl->addTSection('tbody');
                    foreach ($mz_classes as $class) {
                        // mz_pr($class);
                        $sDate = date_i18n('m/d/Y', strtotime($class['StartDateTime']));
                        $sLoc = $class['Location']['ID'];
                        $sTG = $class['ClassDescription']['Program']['ID'];
                        $studioid = $class['Location']['SiteID'];
                        $sclassid = $class['ClassScheduleID'];
                        $sclassidID = $class['ID'];
                        $classDescription = $class['ClassDescription']['Description'];
                        $sType = -7;
                        $showCancelled = $class['IsCanceled'] == 1 ? '<div class="mz_cancelled_class">' . __('Cancelled', 'mz-mindbody-api') . '</div>' : '';
                        $className = $class['ClassDescription']['Name'];
                        $startDateTime = date_i18n('Y-m-d H:i:s', strtotime($class['StartDateTime']));
                        $endDateTime = date_i18n('Y-m-d H:i:s', strtotime($class['EndDateTime']));
                        $staffName = $class['Staff']['Name'];
                        $sessionType = $class['ClassDescription']['SessionType']['Name'];
                        $isAvailable = $class['IsAvailable'];
                        $linkURL = "https://clients.mindbodyonline.com/ws.asp?sDate={$sDate}&amp;sLoc={$sLoc}&amp;sTG={$sTG}&amp;sType={$sType}&amp;sclassid={$sclassid}&amp;studioid={$studioid}";
                        if (date_i18n('H', strtotime($startDateTime)) < 12) {
                            $time_of_day = __('morning', 'mz-mindbody-api');
                        } else {
                            if (date_i18n('H', strtotime($startDateTime)) > 16) {
                                $time_of_day = __('evening', 'mz-mindbody-api');
                            } else {
                                $time_of_day = __('afternoon', 'mz-mindbody-api');
                            }
                        }
                        // start building table rows
                        $tbl->addRow('mz_description_holder');
                        $tbl->addCell($time_of_day, 'hidden', 'data');
                        if (isset($isAvailable) && $isAvailable != 0) {
                            $tbl->addCell(date_i18n($this->time_format, strtotime($startDateTime)) . ' - ' . date_i18n($this->time_format, strtotime($endDateTime)) . '<br/><a class="btn" href="' . $linkURL . '" target="_blank">' . __('Sign-Up', 'mz-mindbody-api') . '</a>');
                        } else {
                            $tbl->addCell(date_i18n($this->time_format, strtotime($startDateTime)) . ' - ' . date_i18n($this->time_format, strtotime($endDateTime)));
                        }
                        $tbl->addCell('<a data-toggle="modal" data-target="#mzModal" href="' . MZ_MINDBODY_SCHEDULE_URL . 'inc/modal_descriptions.php?classDescription=' . urlencode(substr($classDescription, 0, 1000)) . '&amp;className=' . urlencode(substr($className, 0, 1000)) . '">' . $className . '</a>' . '<br/><div id="visitMBO" class="btn visitMBO" style="display:none">' . '<a href="' . $linkURL . '" target="_blank">' . __('Manage on MindBody Site', ' mz-mindbody-api') . '</a></div>' . $showCancelled);
                        $tbl->addCell($staffName);
                        $tbl->addCell($sessionType);
                    }
                    // EOF foreach class
                }
                // EOF foreach day
                $tbl->addTSection('tfoot');
                $tbl->addRow();
                $tbl->addCell('', '', '', array('colspan' => 4));
                $return .= $tbl->display();
            } else {
                //Display grid
                $week_starting = date_i18n($this->date_format, strtotime($mz_date));
                //
                $return .= '<h4 class="mz_grid_date">';
                $return .= sprintf(__('Week of %1$s', 'mz-mindbody-api'), $week_starting);
                $return .= '</h4>';
                $tbl->addTSection('thead');
                $tbl->addRow();
                // arguments: cell content, class, type (default is 'data' for td, pass 'header' for th)
                // can include associative array of optional additional attributes
                $tbl->addCell('', '', 'header');
                $tbl->addCell(__('Monday', 'mz-mindbody-api'), '', 'header');
                $tbl->addCell(__('Tuesday', 'mz-mindbody-api'), '', 'header');
                $tbl->addCell(__('Wednesday', 'mz-mindbody-api'), '', 'header');
                $tbl->addCell(__('Thursday', 'mz-mindbody-api'), '', 'header');
                $tbl->addCell(__('Friday', 'mz-mindbody-api'), '', 'header');
                $tbl->addCell(__('Saturday', 'mz-mindbody-api'), '', 'header');
                $tbl->addCell(__('Sunday', 'mz-mindbody-api'), '', 'header');
                $tbl->addTSection('tbody');
                foreach ($mz_days as $classDate => $mz_classes) {
                    if ($classDate < 12) {
                        $time_of_day = __('morning', 'mz-mindbody-api');
                    } else {
                        if ($classDate > 16) {
                            $time_of_day = __('evening', 'mz-mindbody-api');
                        } else {
                            $time_of_day = __('afternoon', 'mz-mindbody-api');
                        }
                    }
                    $tbl->addRow();
                    $tbl->addCell($time_of_day, 'hidden', 'data');
                    $tbl->addCell($mz_classes['display_time']);
                    //mz_pr($mz_classes['display_time']);
                    foreach ($mz_classes['classes'] as $key => $classes) {
                        //mz_pr($key);
                        //mz_pr($classes);
                        //die();
                        if (empty($classes) || null === $classes[0]['ClassDescription']['Name']) {
                            $class_details = '';
                            $num_classes_min_one = 50;
                            //Set to a number that won't match key
                        } else {
                            $class_details = '';
                            $num_classes_min_one = count($classes) - 1;
                            foreach ($classes as $key => $class) {
                                $className = $class['ClassDescription']['Name'];
                                if (!in_array('teacher', $hide)) {
                                    $teacher = __('with', 'mz-mindbody-api') . '&nbsp;' . $class['Staff']['Name'] . '<br/>';
                                } else {
                                    $teacher = '';
                                }
                                $showCancelled = $class['IsCanceled'] == 1 ? '<div class="mz_cancelled_class">' . __('Cancelled') . '</div>' : '';
                                $classDescription = $class['ClassDescription']['Description'];
                                $sessionTypeName = $class['ClassDescription']['SessionType']['Name'];
                                $showCancelled = $class['IsCanceled'] == 1 ? '<div class="mz_cancelled_class">' . __('Cancelled') . '</div>' : '';
                                if (!in_array('duration', $hide) && $class['IsCanceled'] != 1) {
                                    $classStartTime = new DateTime($class['StartDateTime']);
                                    $classEndTime = new DateTime($class['EndDateTime']);
                                    if (phpversion() >= 5.3) {
                                        $classLength = $classEndTime->diff($classStartTime);
                                        $classLength = __('Duration:', 'mz-mindbody-api') . '<br/>&nbsp;' . $classLength->format('%H:%I');
                                    } else {
                                        $classLength = round($classEndTime->format('U') - $classStartTime->format('U'));
                                        $classLength = __('Duration:', 'mz-mindbody-api') . '<br/>&nbsp;' . gmdate("H:i", $classLength);
                                    }
                                } else {
                                    $classLength = '';
                                }
                                // Initialize $signupButton
                                $signupButton = '';
                                // Variables for class URL
                                $sDate = date_i18n('m/d/Y', strtotime($class['StartDateTime']));
                                $sLoc = $class['Location']['ID'];
                                $sTG = $class['ClassDescription']['Program']['ID'];
                                $studioid = $class['Location']['SiteID'];
                                $sclassid = $class['ClassScheduleID'];
                                $sclassidID = $class['ID'];
                                $sType = -7;
                                $isAvailable = $class['IsAvailable'];
                                $class_separator = $key == $num_classes_min_one ? '' : '<hr/>';
                                $linkURL = "https://clients.mindbodyonline.com/ws.asp?sDate={$sDate}&amp;sLoc={$sLoc}&amp;sTG={$sTG}&amp;sType={$sType}&amp;sclassid={$sclassid}&amp;studioid={$studioid}";
                                if (!in_array('signup', $hide)) {
                                    $signupButton = '&nbsp;<a href="' . $linkURL . '" target="_blank" title="' . __('Sign-Up', 'mz-mindbody-api') . '"><i class="fa fa-sign-in"></i></a><br/>';
                                } else {
                                    $signupButton = '';
                                }
                                $class_details .= '<div class="' . 'mz_' . sanitize_html_class($sessionTypeName, 'mz_session_type') . '">' . '<a data-toggle="modal" data-target="#mzModal" href="' . MZ_MINDBODY_SCHEDULE_URL . 'inc/modal_descriptions.php?classDescription=' . urlencode(substr($classDescription, 0, 1000)) . '&amp;className=' . urlencode(substr($className, 0, 1000)) . '">' . $className . '</a>' . '<br/>' . $teacher . $signupButton . $classLength . $showCancelled . '</div>' . $class_separator;
                            }
                        }
                        $tbl->addCell($class_details, 'mz_description_holder');
                    }
                    //end foreach mz_classes
                }
                //end foreach mz_days
                $return .= $tbl->display();
            }
            //End if grid
            if ($type == 'week') {
                // schedule navigation
                $return .= mz_mbo_schedule_nav($mz_date, __('Week', 'mz-mindbody-api'));
            }
            $return .= '<div id="mzModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="mzSmallModalLabel" aria-hidden="true">
					 <div class="modal-content">

					</div>
			</div>';
            $return .= '</div>';
        } else {
            if (!empty($mz_schedule_data['GetClassesResult']['Message'])) {
                $return = $mz_schedule_data['GetClassesResult']['Message'];
            } else {
                $return = __('Error getting classes. Try re-loading the page.', ' mz-mindbody-api') . '<br />';
                $return .= '<pre>' . print_r($mz_schedule_data, 1) . '</pre>';
            }
        }
        //EOF If Result / Else
        $mz_schedule_display = 'mz_schedule_display_' . mt_rand(1, 1000000);
        mz_pr($mz_schedule_display);
        set_transient($mz_schedule_display, $return, 60 * 60 * 24);
        return get_transient($mz_schedule_display);
    }
Пример #4
0
function mz_mindbody_debug_text()
{
    require_once MZ_MINDBODY_SCHEDULE_DIR . 'mindbody-php-api/MB_API.php';
    require_once MZ_MINDBODY_SCHEDULE_DIR . 'inc/mz_mbo_init.inc';
    echo "<p>";
    printf(__('Once credentials have been set and activated, look for %1$s in the 
	  GetClassesResponse box below to confirm settings are correct.', 'mz-mindbody-api'), '<code>&lt;ErrorCode&gt;200&lt;/ErrorCode&gt;</code>');
    echo "</p>";
    $mz_timeframe = array_slice(mz_getDateRange(date_i18n('Y-m-d'), 1), 0, 1);
    $mb = instantiate_mbo_API();
    $test = $mb->GetClasses($mz_timeframe);
    $mb->debug();
    echo "<br/>";
}