Rename hasLoginTermsOfUse to hasTermsOfUse

This commit is contained in:
Nicolas Le Goff
2013-07-10 11:54:24 +02:00
parent c83f146a20
commit 2c339fe7c9
2 changed files with 12 additions and 2 deletions

View File

@@ -686,6 +686,11 @@ class Application extends SilexApplication
return false;
}
/**
* Tells if guests are allowed
*
* @return boolean
*/
public function isGuestAllowed()
{
$usrId = \User_Adapter::get_usr_id_from_login($this, 'invite');
@@ -697,7 +702,12 @@ class Application extends SilexApplication
return count(\User_Adapter::getInstance($usrId, $this)->ACL()->get_granted_base()) > 0;
}
public function hasLoginTermsOfUse()
/**
* Tells if application has terms of use
*
* @return noolean
*/
public function hasTermsOfUse()
{
return '' !== \databox_cgu::getHome($this);
}

View File

@@ -78,7 +78,7 @@
<li>
<a href="#">{% trans "Help" %}</a>
</li>
{% if app.hasLoginTermsOfUse() %}
{% if app.hasTermsOfUse() %}
<li>
{% block tou_link %}
<a href="{{ path("login_cgus") }}">{% trans "Terms of use" %}</a>