/**
  * @param PAGE $page Page to which this application is attached.
  */
 public function __construct($page)
 {
     parent::__construct($page);
     $this->xml_options = new PROJECT_APPLICATION_XML_OPTIONS();
     $this->set_path(Folder_name_application, '{' . Folder_name_apps . '}projects');
     $this->set_path(Folder_name_attachments, '{' . Folder_name_data . '}projects/attachments');
 }
 /**
  * @param PAGE $page Page to which this application is attached.
  */
 public function __construct($page)
 {
     parent::__construct($page);
     $this->set_path(Folder_name_application, '{' . Folder_name_apps . '}albums');
     $this->set_path(Folder_name_attachments, '{' . Folder_name_data . '}albums/attachments');
     $class_name = $this->final_class_name('ALBUM_APPLICATION_PICTURE_OPTIONS');
     $this->picture_options = new $class_name();
 }