'', 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":23430,"date":"2021-09-02T14:37:28","date_gmt":"2021-09-02T14:37:28","guid":{"rendered":"https:\/\/www.sugsands.com\/?p=23430"},"modified":"2024-03-20T14:34:20","modified_gmt":"2024-03-20T14:34:20","slug":"six-impressive-local-ice-cream-shops","status":"publish","type":"post","link":"https:\/\/www.sugsands.com\/2021\/09\/02\/six-impressive-local-ice-cream-shops\/","title":{"rendered":"Six Impressive Local Ice Cream Shops"},"content":{"rendered":"

With summer still in full swing these hot and humid days call for something sweet! Luckily for you, the Alabama Gulf Coast boasts a number of ice cream shops where you can try your favorite shakes, sundaes and classic cones.\u00a0<\/span><\/p>\n

The Yard Milkshake Bar<\/b><\/p>\n

This unique shake shack offers one-of-a-kind milkshakes, eight flavors of edible cookie dough and over 50 toppings for you to choose from. If you like your shakes to come with its very own slice of cheesecake or brownie on top, then <\/span>The Yard Milkshake Bar<\/span><\/a> is the one for you.\u00a0<\/span><\/p>\n

Nothing is off limits when you can get a souvenir jar rolled in icing and topped with your favorite candy and we wouldn\u2019t want it any other way.\u00a0<\/span><\/p>\n

Del\u2019s Ice Cream<\/b><\/p>\n

Take it back to the days of your childhood when you visit <\/span>Del\u2019s Ice Cream<\/span><\/a> and treat yourself to the award-winning, locally sourced Cammie\u2019s Old Dutch ice cream.\u00a0<\/span><\/p>\n

Del\u2019s offers 36 unique, homemade flavors in-store and rotates through 80 additional flavors every day. You\u2019ll be able to try every flavor from banana pudding and cappuccino crunch to glazed donut and carrot cake!<\/span><\/p>\n

If you\u2019re looking for something a little different, they also offer sugar-free options and dairy-free sorbets. This cool and refreshing treat comes in flavors such as blue raspberry, mango, and daiquiri ice.<\/span><\/p>\n

Kilwins Orange Beach\u00a0<\/b><\/p>\n

Handcrafted fudge, caramel covered apples and premium ice cream as far as the eye can see! You can expect that and more from <\/span>Kilwins<\/span><\/a> at The Wharf in Orange Beach. Whether you like unique flavors such as apple pie or want to venture out and try a scoop of coconut, you won\u2019t be disappointed.\u00a0<\/span><\/p>\n

Not only do they offer28 flavors of their Original Recipe Ice Cream along with their own hand-crafted waffle cones, but you can also expect seasonal rotations of additional flavors, delicious confections and unique treats themed for major holidays.\u00a0<\/span><\/p>\n

Southern Grind Coffee House<\/b><\/p>\n

Their Chicken Pesto Panini and French Dip might be what some people come for, but the regulars know the desserts are what keep you coming back. Indulge in an incredibly authentic Italian gelateria experience at <\/span>Southern Grind Coffee House<\/span><\/a> in Orange Beach.<\/span><\/p>\n

With the variety of different creamy and fruity flavors, Southern Grind offers some of the best Italian ice and gelato options by the beach. Drop by one of their two locations in Orange Beach for a cup and try one of their signature cinnamon rolls or freshly baked cookies while you\u2019re at it.\u00a0<\/span><\/p>\n

Yumm Twister & Ice Cream<\/b><\/p>\n

Now this is what you call ice cream with a twist! <\/span>Yumm Twister & Ice Cream<\/span> might be fairly new to the area of Gulf Shores but it got everyone talking. Their specialty, a Twister Cake, is mostly known and a favorite dessert in Hungary and Romania.\u00a0<\/span><\/p>\n

They are freshly baked, can be rolled in toppings like sugar or Oreo crumbles and then are filled with your choice of ice cream. Go the extra mile and ask about their spreads like Nutella, whipped cream cheese or peanut butter! You won\u2019t regret it.\u00a0<\/span><\/p>\n

Kayden\u2019s Candy Factory<\/b><\/p>\n

This place might have candy in the name, but their ice cream is nothing to pass up. A fan favorite for locals and visitors alike, <\/span>Kayden\u2019s Candy Factory<\/span><\/a> always provides the coolest sweet treat experience.<\/span><\/p>\n

Customers are able to sample all 30 different types of ice cream and decide how they want to mix and match or keep it simple with a single scoop. Or go big and treat yourself by turning it in to a milkshake or brownie sundae.\u00a0<\/span><\/p>\n

While you’re deciding on which flavor to try, browse through our vacation rentals in Gulf Shores & Orange Beach, AL<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"

With summer still in full swing these hot and humid days call for something sweet! Luckily for you, the Alabama Gulf Coast boasts a number of ice cream shops where you can try your favorite shakes, sundaes and classic cones.\u00a0 The Yard Milkshake Bar This unique shake shack offers one-of-a-kind milkshakes, eight flavors of edible […]<\/p>\n","protected":false},"author":22,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[100],"tags":[28,152,149,132,62,150,65,151],"class_list":["post-23430","post","type-post","status-publish","format-standard","hentry","category-good-times","tag-alabama-vacation-rentals","tag-beach-vacation-rentals","tag-eat-local","tag-gulf-shores-and-orange-beach","tag-gulf-shores-rentals","tag-ice-cream","tag-orange-beach-rentals","tag-vacation-rental"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/posts\/23430","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=23430"}],"version-history":[{"count":0,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/posts\/23430\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/media?parent=23430"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/categories?post=23430"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/tags?post=23430"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}