sathyashrayan

AttributesForm.php

Mar 25th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2. namespace MarketPlace\Attributes\Form;
  3. use Zend\Form\Form;
  4. use Zend\Form\Element;
  5.  
  6.  
  7. class AttributesForm extends Form
  8. {
  9.    
  10.     public function init()
  11.     {  
  12.         $this->add(array(
  13.                 'name' => 'attribute_type',
  14.                 'type' => 'MarketPlace\Attributes\Form\Element\AttributesElements',
  15.         ));
  16.     }
  17.    
  18. }
Add Comment
Please, Sign In to add comment