'', 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":17693,"date":"2020-06-09T20:22:52","date_gmt":"2020-06-09T20:22:52","guid":{"rendered":"https:\/\/www.sugsands.com\/?p=17693"},"modified":"2024-06-20T18:27:22","modified_gmt":"2024-06-20T18:27:22","slug":"6-places-to-enjoy-the-sunset-in-orange-beach-and-gulf-shores","status":"publish","type":"post","link":"https:\/\/www.sugsands.com\/2020\/06\/09\/6-places-to-enjoy-the-sunset-in-orange-beach-and-gulf-shores\/","title":{"rendered":"6 Places to Enjoy the Sunset in Orange Beach and Gulf Shores"},"content":{"rendered":"

“There\u2019s nothing like a beautiful sunset to end a healthy day.” – Rachel Boston<\/h2>\n

It doesn\u2019t get much better than island sunsets. They are a natural wonder that grabs the attention of many vacationers here on the Gulf Coast throughout the year. You can definitely spot the changing skies from anywhere in Orange Beach and Gulf Shores but there are several truly unique places to see the sun set on another day in our area.<\/p>\n

OSO at Bear Point Marina <\/strong><\/h2>\n

There is something magical about sunsets at Bear Point. OSO<\/a> is a new dining option in Orange Beach with a casual menu and atmosphere overlooking a beautiful marina. You can enjoy the view from both indoor and outdoor seating options. A sunset show and seafood nachos? Yes, please.<\/p>\n

Ferris Wheel at The Wharf \u00a0<\/strong><\/h2>\n

Ever watched the sunset from the top of a Ferris wheel? Check it off your list at The Wharf! You will feel surrounded by orange and yellow hues that turn into light pink and blue as the sun disappears on the horizon. While you\u2019re there, enjoy some of the best local restaurants and shopping Orange Beach has to offer.<\/p>\n

Click here to see 5 Reasons to Escape to Gulf Shores and Orange Beach for a Couple\u2019s Getaway<\/a><\/p><\/blockquote>\n

LuLu\u2019s <\/strong><\/h2>\n

Hop on over to Gulf Shores by boat or car\/truck and enjoy the sunset while eating some of the best gumbo the South has to offer. You can sit outside at the cabana bar or grab a table with your friends and soak in the sunset with live music playing in the background. LuLu\u2019s<\/a> atmosphere is a great experience with beautiful bay views.<\/p>\n

Sunset Cruise <\/strong><\/h2>\n

There are few better places to watch a gorgeous Gulf sunset than from a boat! Don\u2019t have one of your own? No worries. There are plenty of options to board a sunset cruise in both Orange Beach and Gulf Shores! Sit back, relax and let others handle the boat and equipment while you take in the amazing sunset.<\/p>\n

Tacky Jacks in Orange Beach <\/strong><\/h2>\n

Did you know the sun sets over the Gulf during fall, winter and spring but it sets over the bay during summer? This means Tacky Jack\u2019s<\/a> is a great spot to catch the beautiful local sunsets during your summer vacation to Orange Beach. Finish the day with a bushwacker and seafood while taking in the view. You can arrive by boat or car so this is a wonderful dining option year-round but the sunsets are something to see during summer!<\/p>\n

Your Condo Balcony <\/strong><\/h2>\n

A wonderful perk of booking a Gulf-front vacation rental like this unit at White Caps in Orange Beach, is the amazing sunset views you\u2019ll catch from the balcony. You can prepare your own dinner, sit outside and relax as the sun sets over the water. We have many Gulf-front and bay-front rental options<\/a> with available dates so browse and book online today. Be sure to give Sugar Sands Realty<\/a> a call<\/a> with any questions!<\/p>\n","protected":false},"excerpt":{"rendered":"

“There\u2019s nothing like a beautiful sunset to end a healthy day.” – Rachel Boston It doesn\u2019t get much better than island sunsets. They are a natural wonder that grabs the attention of many vacationers here on the Gulf Coast throughout the year. You can definitely spot the changing skies from anywhere in Orange Beach and […]<\/p>\n","protected":false},"author":22,"featured_media":17697,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[100],"tags":[93,104,54,56,103],"class_list":["post-17693","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-good-times","tag-beach-vacation","tag-gulf-coast-sunsets","tag-gulf-shores","tag-orange-beach","tag-sunsets"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/posts\/17693","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=17693"}],"version-history":[{"count":0,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/posts\/17693\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/media\/17697"}],"wp:attachment":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/media?parent=17693"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/categories?post=17693"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/tags?post=17693"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}