return array(
0 => array('url' =>
value for url, 'title' => value for title, 'attributes' => value for
attributes),
// You'll usually want to stop here. Provide more
values
// if you want your 'default value' to be
multi-valued:
1 => array('url' => value for url, 'title' =>
value for title, 'attributes' => value for attributes),
2 =>
...
);This is what's under the the PHP code window. How is this supposed to be
understood? I have made this
return array(
0 => array('url' =>
"www.google.co.uk", 'title' => "link to google uk", 'attributes' =>
""),
1 => array('url' => "www.google.com", 'title' => "com
version", 'attributes' => ""),
2 => array('url' =>
"www.google.co.au", 'title' => "co.au version", 'attributes' =>
"")
);