Changeset 504 for trunk/export/create_addon.php
- Timestamp:
- Feb 14, 2013, 7:51:59 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 2 2 aowow 3 3 nbproject 4 .settings 5 .project 6 .buildpath
-
- Property svn:ignore
-
trunk/export/create_addon.php
r498 r504 126 126 $FileName = $this->TempDir.'CzWoW/'.$Column['AddonFileName'].'_'.$FileIndex.'.lua'; 127 127 if(!file_exists($this->TempDir.'CzWoW/')) mkdir($this->TempDir.'CzWoW/', 0777, true); 128 echo($Column['AddonFileName'].': ');128 $Output .= $Column['AddonFileName'].': '; 129 129 $i = 0; 130 130 … … 148 148 149 149 file_put_contents($FileName, $Buffer); 150 echo('<b>Hotovo</b><br />');150 $Output .= '<b>Hotovo</b><br />'; 151 151 } 152 152 } … … 175 175 $Buffer .= '</Ui>'; 176 176 file_put_contents($this->TempDir.'CzWoW/Translates.xml', $Buffer); 177 return($Output); 177 178 } 178 179 … … 215 216 { 216 217 if(!file_exists($this->TempDir)) mkdir($this->TempDir, 0777, true); 217 $this->MakeLanguageFiles(); 218 $this->MakeClientStrings(); 219 // MakeMainScript($Setting); 218 $Output = $this->MakeLanguageFiles(); 219 $Output .= $this->MakeClientStrings(); 220 // $Output .= MakeMainScript($Setting); 221 return($Output); 220 222 } 221 223
Note:
See TracChangeset
for help on using the changeset viewer.