00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_Adminhtml_Block_System_Convert_Profile_Edit_Tab_Run extends Mage_Adminhtml_Block_Template
00035 {
00036 public function __construct()
00037 {
00038 parent::__construct();
00039 $this->setTemplate('system/convert/profile/run.phtml');
00040 }
00041
00042 public function getRunButtonHtml()
00043 {
00044 $html = '';
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060 $html .= $this->getLayout()->createBlock('adminhtml/widget_button')->setType('button')
00061 ->setClass('save')->setLabel($this->__('Run Profile In Popup'))
00062 ->setOnClick('runProfile(true)')
00063 ->toHtml();
00064
00065 return $html;
00066 }
00067
00068 public function getProfileId()
00069 {
00070 return Mage::registry('current_convert_profile')->getId();
00071 }
00072
00073 public function getImportedFiles()
00074 {
00075 $files = array();
00076 $path = Mage::app()->getConfig()->getTempVarDir().'/import';
00077 if (!is_readable($path)) {
00078 return $files;
00079 }
00080 $dir = dir($path);
00081 while (false !== ($entry = $dir->read())) {
00082 if($entry != '.'
00083 && $entry != '..'
00084 && in_array(strtolower(substr($entry, strrpos($entry, '.')+1)), array($this->getParseType())))
00085 {
00086 $files[] = $entry;
00087 }
00088 }
00089 $dir->close();
00090 return $files;
00091 }
00092
00093 public function getParseType()
00094 {
00095 $data = Mage::registry('current_convert_profile')->getGuiData();
00096 if ($data)
00097 return ($data['parse']['type'] == 'excel_xml') ? 'xml': $data['parse']['type'];
00098 }
00099 }