* @license GNU General Public License, version 2 * @link http://addthis.com AddThis website */ class AddThisSharingButtonsMobileToolbarTool extends AddThisSharingButtonsToolParent { public $prettyName = 'Mobile Toolbar'; public $edition = 'basic'; public $anonymousSupport = false; public $inline = false; public $settingsSubVariableName = 'smlmo'; protected $defaultConfigs = array( 'enabled' => false, 'share' => 'on', // off 'follow' => 'on', // off //'followServices' - services just like with other follow tools 'buttonBarTheme' => 'light', // gray or dark 'buttonBarPosition' => 'bottom', // top ); /** * This must be public as it's used in the feature object with this tool * * This takes form input for a tool sub settings variable, manipulates * it, and returns the variables that should be saved to the database. * * @param array $input An associative array of values * input for this tools' settings * @param boolean $addDefaultConfigs Whether to populate in default * values for missing fields * * @return array A cleaned up associative array of settings specific to * this feature. */ public function sanitizeSettings($input, $addDefaultConfigs = true) { $output = array(); if (is_array($input)) { foreach ($input as $field => $value) { switch ($field) { case '__hideOnHomepage': case 'enabled': $output[$field] = (boolean)$value; break; case 'share': case 'follow': if ($value === 'off') { $output[$field] = $value; } break; case 'followServices': if (is_array($value)) { foreach ($value as $service => $username) { if (!empty($username)) { $output['followServices'][$service] = sanitize_text_field($username); } } } break; case 'buttonBarTheme': if ($value === 'gray' || $value === 'dark') { $output[$field] = $value; } break; case 'buttonBarPosition': if ($value === 'top') { $output[$field] = $value; } break; case '__hideOnUrls': if (is_array($value)) { foreach ($value as $urlPattern) { $output[$field][] = sanitize_text_field($urlPattern); } } break; case 'responsive': $output[$field] = (int)$value; break; } } } if ($addDefaultConfigs) { $output = $this->addDefaultConfigs($output); } return $output; } } }