'', 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":21297,"date":"2021-01-29T17:15:32","date_gmt":"2021-01-29T17:15:32","guid":{"rendered":"https:\/\/www.sugsands.com\/?p=21297"},"modified":"2024-06-20T18:36:38","modified_gmt":"2024-06-20T18:36:38","slug":"outside-activities-for-your-2021-beach-getaway","status":"publish","type":"post","link":"https:\/\/www.sugsands.com\/2021\/01\/29\/outside-activities-for-your-2021-beach-getaway\/","title":{"rendered":"Outside Activities for Your 2021 Beach Getaway"},"content":{"rendered":"

Aside from laying on the beach catching rays, here are some other outdoor activities you can do while visiting Gulf Shores & Orange Beach this year!<\/h2>\n

Boating and Fishing <\/strong><\/h2>\n

You can bring your own boat, rent a boat or hire a fishing charter for the day and enjoy a day on the water. Many local boat rental companies will allow you to rent a boat or jet ski for a few hours or daily without a boating license. They will also provide maps of the area so you can explore the many waterfront restaurants and islands surrounding Gulf Shores and Orange Beach. You can also hop on a fishing charter for the day and let you catch dinner!<\/p>\n

Shopping <\/strong><\/h2>\n

Many of the shopping venues<\/a> in our area are outdoors so you can walk around in the fresh air as you shop the latest beach styles. Check out The Wharf, SanRoc Cay and Tanger Outlet Center.<\/p>\n

Click here to see what wellness activities you can do on the beach.\u00a0<\/a><\/p><\/blockquote>\n

Golfing <\/strong><\/h2>\n

You will find some of the most scenic golf courses<\/a> here in Gulf Shores and Orange Beach! Soak up the sun just minutes from white-sand beaches.<\/p>\n

Beer Tasting <\/strong><\/h2>\n

If you\u2019re a fan of craft beer, you\u2019ll love Big Beach Brewing Company<\/a> in Gulf Shores! They have outdoor seating and many days there is a live band, outdoor games and a fun group of people to get to know. Many locals and visitors alike visit this hangout for the atmosphere and delicious beer options.<\/p>\n

History at Fort Morgan <\/strong><\/h2>\n

Are you a history buff? Perfect! Historic Fort Morgan<\/a> is a great place to spend a day. You\u2019ll learn about battles, take in the sights and explore the ruins and remaining structures. Adults and kids both love the rich historic tour found here on the Gulf Coast.<\/p>\n

Nature at Gulf State Park <\/strong><\/h2>\n

You can rent a bike, walk or jog the trails throughout Gulf Shores and take in the surrounding nature while you do it. From eagles to bobcats and alligators, they\u2019re all here at Gulf State Park!<\/a> You can rent bikes at one of the many rental companies surrounding the trails or grab a map at the local welcome center and walk the trails for fresh air mixed with sunshine. Be sure to stop by Lake Shelby and take in the views!<\/p>\n

Alabama Gulf Coast Zoo <\/strong><\/h2>\n

The \u201cLittle Zoo That Grew\u201d now has a new location<\/a> in Gulf Shores and new animals! You can feed giraffes, have some fun watching the bear and tiger in their habitat, play with lemurs, meet Bruce Quillis, the resident porcupine, and much more! You can also enjoy a delicious meal at the The Safari Club Restaurant, which is onsite.<\/p>\n

Sip a Bushwacker <\/strong><\/h2>\n

Our area is known for their amazing bushwacker cocktails and you can find them at many local restaurants with outdoor and waterfront seating. Try Flora-Bama, Pink Pony Pub, Tacky Jacks, GTs on the Bay, Original Oyster House and many others!<\/p>\n

Relax on the Beach <\/strong><\/h2>\n

Whether you relax on your balcony or directly on our white-sand beaches, breathe in the fresh air and enjoy the relaxing waves. Naps are encouraged!<\/p>\n

Do you still need to book your spring and summer beach escape? We have plenty of available options for vacation rentals in Gulf Shores and Orange Beach<\/a> here on our website! Browse for a unit that meets your needs or contact us at the office<\/a> for assistance.<\/p>\n

RELATED:<\/strong><\/p>\n

5 Brunch Spots Loved by Locals and Visitors in Gulf Shores and Orange Beach\u00a0<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"

Aside from laying on the beach catching rays, here are some other outdoor activities you can do while visiting Gulf Shores & Orange Beach this year! Boating and Fishing You can bring your own boat, rent a boat or hire a fishing charter for the day and enjoy a day on the water. Many local […]<\/p>\n","protected":false},"author":22,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[116,100],"tags":[95,28,93,91,98,97,20],"class_list":["post-21297","post","type-post","status-publish","format-standard","hentry","category-educational","category-good-times","tag-alabama-beaches","tag-alabama-vacation-rentals","tag-beach-vacation","tag-condo-rental-gulf-shores","tag-gulf-shores-alabama","tag-orange-beach-alabama","tag-things-to-do-in-orange-beach-al"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/posts\/21297","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=21297"}],"version-history":[{"count":0,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/posts\/21297\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/media?parent=21297"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/categories?post=21297"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/tags?post=21297"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}