'', 1 => 'read', 2 => 'separator' . $position, 3 => '', 4 => 'wp-menu-separator' ); } add_action('init_custom_menu_separator', 'add_launchpad_admin_menu_separator'); // ADD MENU SEPARATOR ABOVE OPTIONS PAGE function set_launchpad_admin_menu_separator() { do_action('init_custom_menu_separator', 57); } add_action('init', 'set_launchpad_admin_menu_separator'); // LAUNCHPAD SETTINGS function register_launchpad_settings() { register_setting('launchpad-settings', 'launchpad'); } // GET DIRECTORY SIZE function get_foldersize($path) { $total_size = 0; $files = scandir($path); $cleanPath = rtrim($path, '/') . '/'; foreach($files as $t) { if ('.' != $t && '..' != $t) { $currentFile = $cleanPath . $t; if (is_dir($currentFile)) { $size = get_foldersize($currentFile); $total_size += $size; } else { $size = filesize($currentFile); $total_size += $size; } } } return $total_size; } // FORMAT DIRECTORY SIZE function wp_formatsize($size) { $units = explode(' ', 'B KB MB GB TB PB'); $mod = 1024; for ($i = 0; $size > $mod; $i++) $size /= $mod; $endIndex = strpos($size, ".") + 3; return substr($size, 0, $endIndex) . ' ' . $units[$i]; } /*----------------------------------------------------------------------------------- LAUNCHPAD OPTIONS PAGE -------------------------------------------------------------------------------------*/ function launchpad_admin_page() { if (!current_user_can('manage_options')) { wp_die(__('You do not have sufficient permissions to access this page.')); } // FETCH SAVED OPTION VALUES $options = get_option('launchpad'); // FETCH DIRECTORY FOLDER SIZES $upload_dir = wp_upload_dir(); $theme_dir = get_theme_root(); $upload_space = get_foldersize($upload_dir['basedir']); $content_space = get_foldersize(WP_CONTENT_DIR); $theme_space = get_foldersize($theme_dir); $plugin_space = get_foldersize(WP_PLUGIN_DIR); $wp_space = get_foldersize(ABSPATH); $active_theme = get_template_directory(); $active_theme_space = get_foldersize($active_theme); // MATH FOR DIRECTORY FOLDER SIZE PERCENTAGES $total = $content_space; $uploads = $upload_space / $total * 100; $plugins = $plugin_space / $total * 100; $themes = $theme_space / $total * 100; $active = ($active_theme_space / 2048000) * 38.86; echo '
'; echo screen_icon().'

Launchpad

'; echo'
'; settings_fields('launchpad-settings'); do_settings_sections('launchpad-settings'); echo ''; echo ''; // THEME SIZE echo ''; echo ''; echo ''; echo ''; // OLYMPUS FORMAT echo ''; echo ''; echo ''; echo ''; // DETAILS FORMAT echo ''; echo ''; echo ''; echo ''; // OLYMPUS PAGE TITE echo ''; echo ''; echo ''; echo ''; // OLYMPUS COMPANY NAME echo ''; echo ''; echo ''; echo ''; // OLYMPUS OFFICE CODES echo ''; echo ''; echo ''; echo ''; // OLYMPUS AGENT CODES /* echo ''; echo ''; echo ''; echo ''; */ // OLYMPUS ASSOCIATION CODES echo ''; echo ''; echo ''; echo ''; // OLYMPUS CONTACT FORM 7 ID echo ''; echo ''; echo ''; echo ''; /* // FEATURES echo ''; echo ''; echo ''; echo ''; */ echo ''; echo '
Memory Usage:WP-Content: '.wp_formatsize($content_space); echo '
'; echo ''; echo ''; echo ''; echo '
'; echo '
    '; echo '
  • Plugins
  • '; echo '
  • Uploads
  • '; echo '
  • Themes
  • '; echo '
  • Misc
  • '; echo '
'; echo '
'; echo 'Theme Size: '.wp_formatsize($active_theme_space); echo '
'; echo ''; echo '
'; echo '
    '; echo '
  • Light
  • '; echo '
  • Average
  • '; echo '
  • Heavy
  • '; echo '
'; echo '
Results Page Format:'; echo ''; echo '
Details Page Format:'; echo ''; echo '
Olympus Page Title:
Olympus Company Name:
Olympus Office Codes:
Olympus Agent Codes:
Olympus Association Codes:
Olympus Contact Form 7 ID:
Features'; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '
'; echo'
'; submit_button(); echo '
'; echo '
'; } /*----------------------------------------------------------------------------------- FUNCTIONS FOR FEATURES -------------------------------------------------------------------------------------*/ /* // FETCH SAVED OPTION VALUES $options = get_option('launchpad'); */ /***************************************** * AGENTS POST TYPE *****************************************/ /* if($options["checkbox_agents"] == 1) { function post_type_agents() { $labels = array( 'name' => 'Agents', 'singular_name' => 'Agent', 'add_new' => 'Add New', 'add_new_item' => 'Add New Agent', 'edit_item' => 'Edit Agent', 'new_item' => 'New Agent', 'all_items' => 'All Agents', 'view_item' => 'View Agents', 'search_items' => 'Search Agents', 'not_found' => 'No Agents found', 'not_found_in_trash' => 'No Agents found in Trash', 'parent_item_colon' => '', 'menu_name' => 'Agents' ); $args = array( 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'query_var' => true, 'rewrite' => array('slug' => 'agent'), 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => true, 'menu_position' => null, 'menu_icon' => 'dashicons-businessman', 'taxonomies' => array(''), 'supports' => array('title', 'editor', 'thumbnail') ); register_post_type('agent' , $args); } add_action('init', 'post_type_agents'); } */ /***************************************** * OFFICES POST TYPE *****************************************/ /* if($options["checkbox_offices"] == 1) { function post_type_offices() { $labels = array( 'name' => 'Offices', 'singular_name' => 'Office', 'add_new' => 'Add New', 'add_new_item' => 'Add New Office', 'edit_item' => 'Edit Office', 'new_item' => 'New Office', 'all_items' => 'All Offices', 'view_item' => 'View Offices', 'search_items' => 'Search Offices', 'not_found' => 'No Offices found', 'not_found_in_trash' => 'No Offices found in Trash', 'parent_item_colon' => '', 'menu_name' => 'Offices' ); $args = array( 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'query_var' => true, 'rewrite' => array('slug' => 'office'), 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => true, 'menu_position' => null, 'menu_icon' => 'dashicons-admin-multisite', 'taxonomies' => array(''), 'supports' => array('title', 'editor', 'thumbnail') ); register_post_type('office' , $args); } add_action('init', 'post_type_offices'); } */ /***************************************** * FAVORITES POST TYPE *****************************************/ /* if($options["checkbox_favorites"] == 1) { function post_type_favorites() { $labels = array( 'name' => 'Favorites', 'singular_name' => 'Favorite', 'add_new' => 'Add New', 'add_new_item' => 'Add New Favorites', 'edit_item' => 'Edit Favorite', 'new_item' => 'New Favorite', 'all_items' => 'All Favorites', 'view_item' => 'View Favorites', 'search_items' => 'Search Favorites', 'not_found' => 'No Favorites found', 'not_found_in_trash' => 'No Favorites found in Trash', 'parent_item_colon' => '', 'menu_name' => 'Favorites' ); $args = array( 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'query_var' => true, 'rewrite' => array('slug' => 'favorite'), 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => true, 'menu_position' => null, 'menu_icon' => 'dashicons-heart', 'taxonomies' => array(''), 'supports' => array('title', 'editor', 'thumbnail') ); register_post_type('favorite' , $args); } add_action('init', 'post_type_favorites'); } */ ?> {"id":28711,"date":"2022-05-30T00:32:09","date_gmt":"2022-05-30T00:32:09","guid":{"rendered":"https:\/\/www.sugsands.com\/?p=28711"},"modified":"2024-04-22T21:21:24","modified_gmt":"2024-04-22T21:21:24","slug":"plan-a-romantic-beach-vacation-to-gulf-shores-and-orange-beach","status":"publish","type":"post","link":"https:\/\/www.sugsands.com\/2022\/05\/30\/plan-a-romantic-beach-vacation-to-gulf-shores-and-orange-beach\/","title":{"rendered":"Plan a Romantic Beach Vacation to Gulf Shores and Orange Beach"},"content":{"rendered":"\n

No matter the season, long walks on the beach are a romantic idea! Plan an anniversary weekend, birthdays or a “just because” beach vacation and book a rental with Sugar Sands! Find ideas and suggestions below and browse our website for the perfect condo or beach house in your budget. <\/p>\n\n\n\n

ROMANCE AROUND EVERY CORNER<\/strong><\/h2>\n\n\n\n

Whether your idea of romance includes long walks on the beach or biking a nature trail, Orange Beach and Gulf Shores is the perfect location. Take a quiet walk along the beach or rent a bike and cruise the Backcountry Trail. You will not be disappointed. After a day with nature, you have plenty of spas nearby to help you relax. Try a couple\u2019s massage at Serenity at the Beach<\/a> followed by shopping and lunch at SanRoc Cay<\/a>.<\/p>\n\n\n\n

Make your trip even more memorable by booking this charming condo at Tradewinds<\/a> in Orange Beach and enjoy 24\/7 Gulf views with the convenience of being minutes from local restaurants and attractions. Directly across the street from Tradewinds is Adventure Island<\/a>, where you can let your inner child play mini-golf, bumper cars and even bumper boats!<\/p>\n\n\n\n

\n

For some added excitement, see the best places to Brunch in Orange Beach\/Gulf Shores.<\/a><\/p>\n<\/blockquote>\n\n\n\n

BREATHTAKING VIEWS<\/strong><\/h2>\n\n\n\n

The sunsets are extraordinary along the coastline but if you haven\u2019t watched an Alabama sunset from an Orange Beach Gulf-front condo balcony, you\u2019re missing out. Those cotton candy colors daily but mother nature\u2019s show is always spectacular.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

DELICIOUS DINING<\/strong><\/h2>\n\n\n\n

Plan a date night at Fisher\u2019s at Orange Beach Marina<\/a>. You can dine upstairs for a more formal experience or dockside for lunch and casual dinners. The food is fresh and the oysters are a local favorite!<\/p>\n\n\n\n

If live music and an outdoor atmosphere is more your style, reserve a table at Cobalt<\/a> on a Friday or Saturday evening. They have an impressive food and cocktail menu for even the pickiest of eaters. You will even catch local live music on the weekends. <\/p>\n\n\n\n

The Gulf Coast is full of\u00a0delicious dining options\u00a0so be sure to try more than one during your stay.<\/p>\n\n\n\n

SMALL TOWN CHARM<\/strong><\/h2>\n\n\n\n

You\u2019ll notice the line \u201cSmall Town, Big Beach\u201d on many signs and city vehicles in Gulf Shores. This holds true for both Gulf Shores and Orange Beach with a community that loves to support local businesses, southern hospitality around every corner and less traffic this time of year.<\/p>\n\n\n\n

One of the best perks of escaping to a small beach town on vacation is the fact that you are within walking distance to restaurants and entertainment. Rent a bike, jet ski or boat from one of the local watersports companies and plan a day of adventure around our charming coastal towns here in Alabama.<\/p>\n\n\n\n

We\u2019ve listed plenty of ideas for fun<\/a> in the area and you can book your vacation directly online<\/a> with Sugar Sands Realty. Don\u2019t hesitate to give us a call with any questions. We\u2019re happy to help!<\/p>\n","protected":false},"excerpt":{"rendered":"

No matter the season, long walks on the beach are a romantic idea! Plan an anniversary weekend, birthdays or a “just because” beach vacation and book a rental with Sugar Sands! Find ideas and suggestions below and browse our website for the perfect condo or beach house in your budget. ROMANCE AROUND EVERY CORNER Whether […]<\/p>\n","protected":false},"author":22,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[95,28,93,54,19,56,8,102],"class_list":["post-28711","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-alabama-beaches","tag-alabama-vacation-rentals","tag-beach-vacation","tag-gulf-shores","tag-gulf-shores-vacation-rentals","tag-orange-beach","tag-orange-beach-vacation-rentals","tag-vacation-rentals"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/posts\/28711","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/users\/22"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/comments?post=28711"}],"version-history":[{"count":0,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/posts\/28711\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/media?parent=28711"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/categories?post=28711"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/tags?post=28711"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}