index.php 405 B

1234567891011121314
  1. <?php
  2. $_template['show_message'] = false;
  3. if (api_is_anonymous()) {
  4. $_template['show_message'] = true;
  5. // the default title label
  6. $label = "Connexion hors compte universitaire";
  7. if (!empty($plugin_info['settings']['formLogin_hide_unhide_label'])) {
  8. $label = api_htmlentities($plugin_info['settings']['formLogin_hide_unhide_label']);
  9. }
  10. $_template['label'] = $label;
  11. }