just to add a bit more information for anyone who might be able to help me:
The shortcuts menu in icontent is a block.
I got this php code from the file b.icontent.shortcuts.
I think maybe somewhere in here it must stipulate the order the links are listed in??? Maybe..Possibly??
function b_icontent_shortcuts($options)
{
global $xoopsDB, $xoopsConfig;
$myts =& MyTextSanitizer::getInstance();
$block = array();
$block['shortcut'] = array();
$result = $xoopsDB->query("SELECT `name`, `page` FROM `".$xoopsDB->prefix()."_icontent_shortcuts` ORDER BY `name`");
if (mysql_num_rows($result) > 0)
{
while($item = $xoopsDB->fetchArray($result))
{
$item['name'] = $myts->makeTboxData4Show($item['name']);
if(strlen($item['name']) > $options[0])
{
$item['name'] = substr($item['name'],0,$options[0])."...";
}
$block['shortcut'][] = array('name' => $item['name'], 'link' => XOOPS_URL."/modules/icontent/index.php?page=".$item['page']);
}
$block['content'] = 1;
}
else
{
$block['content'] = 0;
$block['lang_noShortcut'] = _IC_B_NOSHORTCUT;
}
return $block;
}
function b_icontent_shortcuts_edit($options)
{
$form = _IC_B_NAMELENGTH." :
"._IC_B_CHARS."\n";
return $form;
}
?>
I don't know php so can''t read it