services/pageBuilder.class.php [64:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    function buildContentSummary(){
        $method = 'buildContentSummary_' . $this->template;
        if(method_exists($this, $method)){
            return $this->$method();
        }else{
            $cls = get_class($this);
            __info("[$cls] Template for ContentSummary not found: " . $method);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



services/pageBuilder.class.php [74:82]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    function buildContentDetail(){
        $method = 'buildContentDetail_' . $this->template;
        if(method_exists($this, $method)){
            return $this->$method();
        }else{
            $cls = get_class($this);
            __info("[$cls] Template for ContentDetail not found: " . $method);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



