• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Updated Developer Information: Method canViewArticleAttachments has been deprecated and will be removed in AMS 3.0

Bob

Developer
Staff member
This is a notice to 3rd party developers that extend AMS...

As per title, the method canViewArticleAttachments in the Article Item Entity has been deprecated and will be permanently removed in AMS 3.0.

PHP:
    /**
     * @deprecated Use canViewAttachments instead
     *
     */
    public function canViewArticleAttachments()
    {
        return $this->hasPermission('viewArticleAttach');
    }
 
Upvote 0
This suggestion has been implemented. Votes are no longer accepted.
Back
Top