. * */ /** * Holds the current options for TubePress. This is the default options, * usually in persistent storage somewhere, and custom options parsed * from a shortcode */ interface org_tubepress_options_manager_OptionsManager { /** * Gets the value of an option * * @param string $optionName The name of the option * * @return unknown The option value */ public function get($optionName); /** * Enter description here... * * @param array $customOpts Custom options * * @return void */ public function setCustomOptions($customOpts); /** * Enter description here... * * @param array $customOpts Custom options * * @return void */ public function mergeCustomOptions($customOpts); /** * Enter description here... * * @param string $newTagString The new shortcode * * @return void */ public function setShortcode($newTagString); /** * Enter description here... * * @return string The full shortcode */ public function getShortcode(); }