FeedWordPressSyndicationPage::__construct PHP Method

__construct() public method

public __construct ( $filename = NULL )
    public function __construct($filename = NULL)
    {
        parent::__construct('feedwordpresssyndication', NULL);
        // No over-arching form element
        $this->dispatch = NULL;
        if (is_null($filename)) {
            $this->filename = __FILE__;
        } else {
            $this->filename = $filename;
        }
    }