Advertisement
Guest User

Untitled

a guest
Feb 13th, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. class ZKMailChimpSubscribe extends Widget {
  2.  
  3.     static $title = "MailChimp Subscribe";
  4.     static $cmsTitle = "MailChimp Subscribe";
  5.     static $description = "Form per l'iscrizione a MailChimp";
  6.     static $db = array(
  7.             "Label" => "Varchar(64)",
  8.     );
  9.  
  10.     public function getCMSFields() {
  11.         return new FieldList(
  12.                         new TextField("Label", _t("title", "Titolo"), self::$title)
  13.         );
  14.     }
  15.  
  16.     public function ZkMcSubscribeForm() {
  17.         $controller = new ZkMailChimpController();
  18.         return $controller->ZkMcSubscribeForm();
  19.     }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement