Skip to content

Commit

Permalink
Alphabetic sorting on class definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
olafgleba committed Sep 28, 2011
1 parent 0877fc2 commit 7a1aa8f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions welcompose/admin/application/actions_apply_url_patterns.php
Expand Up @@ -120,14 +120,14 @@

// class loader array
$classLoad = array(
'SIMPLEPAGE' => array('selectSimplePages', 'updateSimplePage'),
'SIMPLEFORM' => array('selectSimpleForms', 'updateSimpleForm'),
'SIMPLEGUESTBOOK' => array('selectSimpleGuestbooks', 'updateSimpleGuestbook'),
'GENERATORFORM' => array('selectGeneratorForms', 'updateGeneratorForm'),
'ABBREVIATION' => array('selectAbbreviations', 'updateAbbreviation'),
'BLOGPOSTING' => array('selectBlogPostings', 'updateBlogPosting'),
'BOX' => array('selectBoxes', 'updateBox'),
'GENERATORFORM' => array('selectGeneratorForms', 'updateGeneratorForm'),
'GLOBALBOX' => array('selectGlobalBoxes', 'updateGlobalBox'),
'ABBREVIATION' => array('selectAbbreviations', 'updateAbbreviation')
'SIMPLEPAGE' => array('selectSimplePages', 'updateSimplePage'),
'SIMPLEFORM' => array('selectSimpleForms', 'updateSimpleForm'),
'SIMPLEGUESTBOOK' => array('selectSimpleGuestbooks', 'updateSimpleGuestbook')
);

foreach ($classLoad as $classRef => $classFunc) {
Expand Down

0 comments on commit 7a1aa8f

Please sign in to comment.