function __construct()
 {
     $this->headline = EZP_CS_Utility::__("Coming soon");
     $this->description = EZP_CS_Utility::__("Our exciting new website is coming soon! Check back later.");
     $this->disclaimer = EZP_CS_Utility::__("We won't spam you or sell your email address. Pinky swear.");
     $this->footer = EZP_CS_Utility::__("(C)2014 My Company LLC");
     $this->email_placeholder_text = EZP_CS_Utility::__("Enter email");
     $this->name_placeholder_text = EZP_CS_Utility::__("Enter name");
     $this->email_button_text = EZP_CS_Utility::__("Subscribe");
     $this->thank_you_headline = EZP_CS_Utility::__("Thank you!");
     $this->thank_you_description = EZP_CS_Utility::__("You'll hear from us when we launch.");
     $this->title = EZP_CS_Utility::__("Coming soon");
     $this->countdown_due_date = "";
     parent::__construct();
 }
 function __construct()
 {
     $this->coming_soon_mode_on = false;
     $this->collect_email = true;
     $this->collect_name = true;
     $this->return_code = 503;
     $this->author_url = "";
     $this->meta_description = "";
     $this->meta_keywords = "";
     $this->analytics_code = "";
     $this->facebook_url = "";
     $this->twitter_url = "";
     $this->google_plus_url = "";
     $this->allowed_urls = "";
     parent::__construct();
 }
 function __construct()
 {
     parent::__construct();
     $this->background_image_url = EZP_CS_Utility::$PLUGIN_URL . '/images/backgrounds/cloud-1.jpg';
     $font_size_regex = "/(px|em|ex|%|in|cm|mm|pt|pc)+\$/";
     $div_size_regex = "/(px|%)+\$/";
     $this->verifiers['text_headline_font_size'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Headline font must end in a unit (px, em, etc...)"));
     $this->verifiers['text_description_font_size'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Description font must end in a unit (px, em, etc...)"));
     $this->verifiers['text_disclaimer_font_size'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Disclaimer font must end in a unit (px, em, etc...)"));
     $this->verifiers['text_footer_font_size'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Footer font must end in a unit (px, em, etc...)"));
     $this->verifiers['email_button_font_size'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Email button font must end in a unit (px, em, etc...)"));
     //            $this->verifiers['logo_width'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Logo width must end in px or %"));
     //            $this->verifiers['logo_height'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Logo height font must end in px or %"));
     $this->verifiers['email_button_width'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Email button height font must end in px or %"));
     $this->verifiers['email_button_height'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Email button width must end in px or %"));
     $this->verifiers['content_box_opacity'] = new EZP_CS_Range_Verifier(0, 1, EZP_CS_Utility::__("Content box opacity must be between 0 and 1"));
 }
 function __construct()
 {
     parent::__construct();
     $plugin_version = EZP_CS_Constants::PLUGIN_VERSION;
 }