providerService(); $serviceCreds = PR()->serviceLogin(); $activities = array(); // Look up the info if we have the login. if ($serviceCreds['username']) { $activities = $psc->getActivities(array('serviceLogin' => $serviceCreds)) ->return; } if ($activities): ?>

Available Activities

Name Island Description Notes Times Shortcode
name; ?> island; ?> description; ?> notes; ?> times; ?> [pr_activity id=id; ?>]

Enter login information above to see your activity list.

providerService(); $serviceCreds = PR()->serviceLogin(); // Set up our various calendar styles $selectedStyle = get_option('pr_default_style'); $styles = array('black-tie', 'blitzer', 'cupertino', 'dark-hive', 'dot-luv', 'eggplant', 'excite-bike', 'flick', 'hot-sneaks', 'humanity', 'le-frog', 'mint-choc', 'overcast', 'pepper-grinder', 'redmond', 'smoothness', 'south-street', 'start', 'sunny', 'swanky-purse', 'trontastic', 'ui-darkness', 'ui-lightness', 'vadar'); // Get our default template $defaultTemplate = get_option('pr_default_template'); $timeout = get_option('pr_cache_timeout'); ?>

PonoRez Account Configuration


This value determines how often information is retrieved from the Pono Rez servers.


Enter login information above to see your activity list.

providerService(); $testResult = $psc->testLogin(array('serviceLogin' => array('username' => $username, 'password' => $password))); // Return values kept here. $ajaxResult = array(); if (true == $testResult->return) { update_option('pr_username', $username); update_option('pr_password', $password); $ajaxResult['success'] = true; } else { $ajaxResult['success'] = false; $ajaxResult['message'] = $testResult->out_status; } header( "Content-Type: application/json" ); echo json_encode($ajaxResult); wp_die(); } public function init () { add_action('admin_menu', array($this, 'addSettingsMenu')); add_action('admin_init', array($this, 'registerSettings')); // Setup JavaScript //wp_enqueue_script( 'jquery-form' ); add_action('wp_ajax_pr_store_login', array($this, 'ajaxStoreLogin')); add_action('wp_ajax_pr_activity_list', array($this, 'prActivityList')); } }