This one is not directly related to the subject, but it also is, somehow.
In the past, I modified the AdminCP menu of a hack of mine, depending on a parameter the user entered, adding or removing a line in the menu. If the condition of this parameter was changed, then I forced a reload of admincp, by redirecting the program to admincp/index.php.
Obviously this method can no longer be used, and I have to have two different cpnav_xxx.xml files, one with the additional line and one with out it, and copy the one I need to the /includes/xml directory. However, my php knowledge is not that extensive, so can some one please tell me how I can do something like (in pseudo code):
Code:
if (parameter==1)
{
copy /temp/menu1.xml /includes/xml/cpnav_aws.xml
}
else
{
copy /temp/menu2.xml /includes/xml/cpnav_aws.xml
}
Thanks for your help.