Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ornicar/358819 to your computer and use it in GitHub Desktop.
Save ornicar/358819 to your computer and use it in GitHub Desktop.
// in the _dmWidgetSearchResults.php partial
foreach($pager->getResults() as $result)
{
$page = $result->getPage();
if($page->isModuleAction('article', 'show')
{
$article = $page->getRecord();
// use your Article instance
}
else
{
// use the DmPage instance
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment