AdminPageFramework_ExportOptions::__construct PHP Method

__construct() public method

public __construct ( $aPostExport, $sClassName )
    public function __construct($aPostExport, $sClassName)
    {
        parent::__construct($aPostExport);
        $this->sClassName = $sClassName;
        $this->sFileName = $this->getSubmitValueByType($aPostExport, $this->sInputID, 'file_name');
        $this->sFormatType = $this->getSubmitValueByType($aPostExport, $this->sInputID, 'format');
        $this->bIsDataSet = $this->getSubmitValueByType($aPostExport, $this->sInputID, 'transient');
    }