uploadDir . $txtFile) ) { $this->set('textFilePath', $config->uploadDir . $txtFile); } if ($htmlFile && file_exists($config->uploadDir . $htmlFile) ) { $this->set('htmlFilePath', $config->uploadDir . $htmlFile); } $this->_stateMachine = new CRM_Mailing_StateMachine_Send($this, $action, $mailingID); // create and instantiate the pages $this->addPages($this->_stateMachine, $action); // add all the actions $uploadNames = array_merge(array('textFile', 'htmlFile'), CRM_Core_BAO_File::uploadNames() ); $config = CRM_Core_Config::singleton(); $this->addActions($config->uploadDir, $uploadNames ); } }