Skip to content

Instantly share code, notes, and snippets.

@joaorobertopb
Created October 5, 2018 01:09
Show Gist options
  • Save joaorobertopb/26da49b5ee193929505120e60e10d163 to your computer and use it in GitHub Desktop.
Save joaorobertopb/26da49b5ee193929505120e60e10d163 to your computer and use it in GitHub Desktop.
Não use comentários para versionar o código!
<?php
private function deveExecutar()
{
$gruposAcesso = explode(',', $_SESSION['GRUPOSACESSO']);
/*
if (in_array(self::GRUPO_ADMINISTRADOR, $gruposAcesso)) {
return true;
}
return false;
*/
return in_array(self::GRUPO_ADMINISTRADOR, $gruposAcesso);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment