Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $data = views_get_view('product_index');
- if ($data) {
- // Set the display.
- $data->set_display('ctools_context_2');
- ctools_include('context');
- ctools_include('content');
- ctools_include('plugins');
- $view_context = ctools_context_create('view', $data);
- if ($callback = ctools_plugin_load_function('ctools', 'content_types', 'views_exposed', 'render callback')) {
- $output = $callback('', array(), array(), $view_context);
- print $output->content;
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment