word.php 450 B

12345678910111213
  1. <?php
  2. if($this->methodName == 'export' and in_array($this->moduleName, array('story', 'epic', 'requirement')))
  3. {
  4. if(in_array('excel', $lang->exportFileTypeList))
  5. {
  6. unset($lang->exportFileTypeList['excel']);
  7. $lang->exportFileTypeList = array('excel' => 'excel', 'word' => 'word') + $lang->exportFileTypeList;
  8. }
  9. else
  10. {
  11. $lang->exportFileTypeList = array('word' => 'word') + $lang->exportFileTypeList;
  12. }
  13. }