You are here

public static function ShareaholicUtilities::get_default_sb_off_locations in Share Buttons, Related Posts, Content Analytics - Shareaholic 8

Same name and namespace in other branches
  1. 7.3 utilities.php \ShareaholicUtilities::get_default_sb_off_locations()

Get share buttons locations that should be turned off by default

Return value

{Array}

2 calls to ShareaholicUtilities::get_default_sb_off_locations()
ShareaholicUtilities::get_or_create_api_key in ./utilities.php
Returns the api key or creates a new one.
ShareaholicUtilities::set_default_location_settings in ./utilities.php
Given an object, set the default on/off locations for share buttons and recommendations

File

./utilities.php, line 276

Class

ShareaholicUtilities

Code

public static function get_default_sb_off_locations() {
  $page_types = self::page_types();
  $turned_off_share_buttons_locations = array();
  foreach ($page_types as $key => $page_type) {
    $page_type_name = $page_type->type;
    $turned_off_share_buttons_locations[] = array(
      'name' => $page_type_name . '_above_content',
    );
  }
  return $turned_off_share_buttons_locations;
}