Jump to content

Download: D21-Standard Language File Formatter 1.0


Shawn Dean

Recommended Posts

File Name: D21-Standard Language File Formatter 1.0
File Submitter: Shawn Dean
File Submitted: 05 Feb 2006
File Category: Modifications

D21-Standard Language File Formatter

Modification Description:
D21-Standard Language File Formatter Will Format Language Files In The Standard Way Via ACP Edit.

Files Affected:

  • sources/action_admin/languages.php
Modification History:
  • 1.0
    • First initial release of modification
Example Of How Mod Works:
Currently when you edit a language file via Admin CP, it saves the file ib this format:


Click here to download this file
<?php


$lang['var1'] = 'text';

$lang['var2'] = 'text';

$lang['var3'] = 'text';


?>


When you add this modification and then edit a language file via Admin CP and save it, it will save it in this format:

<?php


$lang = array(


'var1' => 'text',

'var2' => 'text',

'var3' => 'text',


);

?>
Link to comment

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...