function views_handler_field_node_disqus_comment_count::init in Disqus 7
Init the handler with necessary data.
Parameters
view $view: The $view object this handler is attached to.
array $options: The item from the database; the actual contents of this will vary based upon the type of handler.
Overrides views_handler_field::init
File
- ./
disqus.views.inc, line 26 - Views integration with the Disqus module.
Class
- views_handler_field_node_disqus_comment_count
- Field handler to present the number of Disqus comments on a node.
Code
function init(&$view, &$options) {
parent::init($view, $options);
}