Sorry, I ment:
Zend_Navigation_page::factory(array(
'label' => 'My Relation',
'rel' => array(
'nofollow' => 'http://example.org';
)
);
or
Zend_Navigation_page::factory(array(
'label' => 'My Relation',
'rel' => array(
'nofollow' => Zend_Navigation_Page::factory(array(
'label' => 'The Example Organisation'
'uri' => 'http://example.org';
)
);
etc
On 20-2-2010 20:40, Maghiel Dijksman wrote:
You can find information about the rel attribute in the manual:
http://framework.zend.com/manual/en/zend.navigation.pages.html
and
http://framework.zend.com/manual/en/zend.view.helpers.html#zend.view.helpers.initial.navigation.links
I think syntax for nofollow is something like:
Zend_Navigation_page::factory(array(
'label' => 'My Relation',
'rel' => 'nofollow'
)
);
I could be wrong though, did not test this.
Regards,
Maghiel
On 20-2-2010 20:24, Iron_Mike wrote:
Anybody ?