http://www.longtailvideo.com/adsolution." .
"
To sign up for this service, click here to create an account."
);
/**
* Responsible for the display of LTAS configuration.
* @file Class definition of LTASState
* @see AdminState
*/
class LTASState extends WizardState {
/**
* @see AdminState::__construct()
*/
public function __construct($player, $post_values = "") {
parent::__construct($player, $post_values);
}
/**
* @see AdminState::getID()
*/
public static function getID() {
return "ltas";
}
/**
* @see AdminState::getNextState()
*/
public function getNextState() {
LongTailFramework::setConfig($this->current_player);
return new PluginState($this->current_player, $this->current_post_values);
}
/**
* @see AdminState::getPreviousState()
*/
public function getPreviousState() {
LongTailFramework::setConfig($this->current_player);
return new AdvancedState($this->current_player);
}
/**
* @see AdminState::getCancelState()
*/
public function getCancelState() {
return new PlayerState("");
}
/**
* @see AdminState::getSaveState()
*/
public function getSaveState() {
return new PlayerState("");
}
public static function getTitle() {
return WizardState::LTAS_STATE;
}
/**
* @see AdminState::render()
*/
public function render() {
$ltas = LongTailFramework::getLTASConfig(); ?>