2985 Posts in 761 Topics by 740 members
Template Questions
SilverStripe Forums » Template Questions » Control $action
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba
|
Page:
1
|
Go to End | |
| Author | Topic: | 421 Views |
-
Control $action

9 December 2010 at 5:20pm
I have a control in the template that loops through a number of objects and call the object action (function). The function should only return html, but I'm finding that in the anchor tag in the href attr as the complete URL.
How do I remove this?
function Output(){
$tab_title = '';
$tab_content = '';foreach($this->getComponents('TabContent') as $key => $tab){
$tab_title .= '<li><a href="#tab-'.$key.'">'.$tab->Name.'</a></li>';
$tab_content .= '<div id="tab-'.$key.'">'.$tab->Content.'</div>';
}
$tab_title = '<ul>'.$tab_title.'</ul>';
$tab_content = ''.$tab_content.'';
$rawHTML = '<div id="tabs">'.$tab_title.$tab_content.'</div>';
return $rawHTML;
}
| 421 Views | ||
|
Page:
1
|
Go to Top |

