/**
  * handler for checkTitle hook
  *
  * @static
  *
  * @param Title $title -- title instance
  * @param Bool $displayBlock -- shoould block be displayed or not
  *
  * @return bool true -- pass hook further
  */
 public static function checkTitle($title, $displayBlock = true)
 {
     wfProfileIn(__METHOD__);
     $phalanxModel = new PhalanxContentModel($title);
     $ret = $phalanxModel->match_title();
     if ($ret === false && $displayBlock) {
         $phalanxModel->displayBlock();
     }
     wfProfileOut(__METHOD__);
     return $ret;
 }