コード例 #1
0
ファイル: csv.php プロジェクト: vaenda/moodle-mod_dataform
 /**
  *
  */
 public function __construct($view)
 {
     parent::__construct($view);
     // Set user define csv settings.
     if ($this->param1) {
         list($this->_delimiter, $this->_enclosure, $this->_encoding) = explode(',', $this->param1);
     }
 }