<?php

class Modregister extends Modregister_parent {

    /*Set default to false*/
    public function isNewsSubscribed()
    {
        if ( $this->_blNewsSubscribed === null ) {
            $blNews = false;
            if ( ( $oUser = $this->_getActiveUser() ) ) {
                $blNews = $oUser->getNewsSubscription()->getOptInStatus();
            }
            $this->_blNewsSubscribed = $blNews;
        }
        return $this->_blNewsSubscribed;
    }
}
?>