public function SlickViews::renderSlick in Slick Views 7.2
Renders the slick instances.
1 call to SlickViews::renderSlick()
- SlickViews::render in ./
SlickViews.inc - Renders the display in this style.
File
- ./
SlickViews.inc, line 71 - Slick style plugin for the Views module.
Class
- SlickViews
- Implements a style type plugin for the Views module.
Code
public function renderSlick($slick, $settings) {
return array(
'#theme' => $this
->theme_functions(),
'#view' => $this->view,
'#options' => $settings,
'#rows' => $slick,
);
}