/**
  * Permit requests to the statistics grid handler
  * @param $hookName string The name of the hook being invoked
  * @param $args array The parameters to the invoked hook
  */
 function setupGridHandler($hookName, $params)
 {
     $component =& $params[0];
     if ($component == 'plugins.generic.addThis.controllers.grid.AddThisStatisticsGridHandler') {
         // Allow the static page grid handler to get the plugin object
         import($component);
         AddThisStatisticsGridHandler::setPlugin($this);
         return true;
     }
     return false;
 }