Shawn Dean Posted September 21, 2009 Posted September 21, 2009 File Name: D21-Standard Language File Formatter 1.0File Submitter: Shawn DeanFile Submitted: 05 Feb 2006File Category: ModificationsD21-Standard Language File FormatterModification Description: D21-Standard Language File Formatter Will Format Language Files In The Standard Way Via ACP Edit.Files Affected:sources/action_admin/languages.phpModification History:1.0First initial release of modificationExample 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', ); ?>
Recommended Posts
Archived
This topic is now archived and is closed to further replies.