Skip to content

Instantly share code, notes, and snippets.

@Javlopez
Created June 29, 2011 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Javlopez/1054644 to your computer and use it in GitHub Desktop.
Save Javlopez/1054644 to your computer and use it in GitHub Desktop.
Implementation of A2
<?php defined('SYSPATH') or die('No direct script access.');
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
* Description of Test
*
* @author Javier Lopez Lopez
* @package
*/
class Controller_Test extends Controller {
public function action_index() {
if(A2::instance()->allowed('discussion','read'))
{
echo "si puedes leer esto";
}
if(A2::instance()->allowed('discussion','edit'))
{
echo "si puedes modificar esto";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment