/**
  * Post execute hook.
  *
  * @param mixed $result The return value of this component.
  *
  * @return  mixed  The return value of this component.
  */
 protected function postExecute($result)
 {
     // Debug profiler
     if (JDEBUG) {
         $result .= "<hr />" . ProfilerHelper::render('Windwalker', true);
     }
     return parent::postExecute($result);
 }