AdminPageFramework_Form___SubmitNotice::_printNotices PHP Method

_printNotices() private method

private _printNotices ( $aNotices )
    private function _printNotices($aNotices)
    {
        $_aPeventDuplicates = array();
        foreach (array_filter((array) $aNotices, 'is_array') as $_aNotice) {
            $_sNotificationKey = md5(serialize($_aNotice));
            if (isset($_aPeventDuplicates[$_sNotificationKey])) {
                continue;
            }
            $_aPeventDuplicates[$_sNotificationKey] = true;
            new AdminPageFramework_AdminNotice($this->getElement($_aNotice, 'sMessage'), $this->getElement($_aNotice, 'aAttributes'));
        }
    }