public function __construct(Oedipus_Frame $frame)
 {
     parent::__construct();
     $this->frame = $frame;
     // Link to add_new_character the frame
     $add_new_character_li = $this->get_add_new_character_li();
     $this->append_tag_to_content($add_new_character_li);
 }
 public function __construct(Oedipus_Frame $frame, Oedipus_Option $option)
 {
     parent::__construct();
     $this->frame = $frame;
     $this->option = $option;
     // Link to delete_option
     $delete_option_li = $this->get_delete_option_li();
     $this->append_tag_to_content($delete_option_li);
 }
 public function __construct(Oedipus_Frame $frame, Oedipus_Character $character)
 {
     parent::__construct();
     $this->frame = $frame;
     $this->character = $character;
     // Link to delete_character
     $delete_character_li = $this->get_delete_character_li();
     $this->append_tag_to_content($delete_character_li);
     // Link to add_option
     $add_option_li = $this->get_add_option_li();
     $this->append_tag_to_content($add_option_li);
 }