Shifting options in the ACP around

This is an archive of the phpBB 2.0.x support forum. Support for phpBB2 has now ended.
Forum rules
Following phpBB2's EoL, this forum is now archived for reference purposes only.
Please see the following announcement for more information: viewtopic.php?f=14&t=1385785
Locked
TheColbyJack
Registered User
Posts: 136
Joined: Tue May 09, 2006 1:15 am

Shifting options in the ACP around

Post by TheColbyJack »

How do I change the order of options in my ACP?

Thanks.
User avatar
karlsemple
Former Team Member
Posts: 39802
Joined: Mon Nov 01, 2004 8:54 am
Location: Hereford, UK
Contact:

Post by karlsemple »

open your forums admin/index.php


you'll find

Code: Select all

ksort($module);

ksort is a sort function for the admin pages/modules, have a read of this

http://uk.php.net/manual/en/function.ksort.php

and also take note of the the bit where it says
See also asort(), arsort(), krsort(), uksort(), sort(), natsort(), and rsort().
for other sort methods :)
Image
TheColbyJack
Registered User
Posts: 136
Joined: Tue May 09, 2006 1:15 am

Post by TheColbyJack »

karlsemple wrote: open your forums admin/index.php


you'll find

Code: Select all

ksort($module);

ksort is a sort function for the admin pages/modules, have a read of this

http://uk.php.net/manual/en/function.ksort.php

and also take note of the the bit where it says
See also asort(), arsort(), krsort(), uksort(), sort(), natsort(), and rsort().
for other sort methods :)

I appreciate the effort, but that isn't quite what I'm looking for. :)
Locked

Return to “2.0.x Support Forum”