ActivityModel::notifyWallPost PHP Метод

notifyWallPost() защищенный Метод

protected notifyWallPost ( $WallPost )
$WallPost
    protected function notifyWallPost($WallPost)
    {
        $NotifyUser = Gdn::userModel()->getID($WallPost['ActivityUserID']);
        $Activity = ['ActivityType' => 'WallPost', 'ActivityUserID' => $WallPost['RegardingUserID'], 'Format' => $WallPost['Format'], 'NotifyUserID' => $WallPost['ActivityUserID'], 'RecordType' => 'Activity', 'RecordID' => $WallPost['ActivityID'], 'RegardingUserID' => $WallPost['ActivityUserID'], 'Route' => userUrl($NotifyUser, ''), 'Story' => $WallPost['Story'], 'HeadlineFormat' => t('HeadlineFormat.NotifyWallPost', '{ActivityUserID,User} posted on your <a href="{Url,url}">wall</a>.')];
        $this->save($Activity, 'WallComment');
    }