PHP code example of mattmezza / aclify

1. Go to this page and download the library: Download mattmezza/aclify library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mattmezza / aclify example snippets


use Aclify\ACL;

class User extends ACLUser
{
    private $acl;
    private $id;
    public function __construct(ACL $acl, string $id) 
    {
        $this->acl = $acl;
        $this->id = $id;
    }
    public function getACL() : ACL
    {
        return $this->acl;
    }
    public function getId() : string
    {
        return $this->id;
    }
}

$acl = new Aclify\ACL();
$gigi = new User($acl, "[email protected]");
if ($gigi->can("create_post"))
{
    // ...
}

$acl = new Aclify\ACL();
if ($acl->can("[email protected]", "create_post"))
{
    // ...
}