set_robots.php 605 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Form body for setting robots.txt
  4. */
  5. $site = elgg_get_site_entity();
  6. echo '<div>';
  7. echo elgg_echo('admin:robots.txt:instructions');
  8. echo elgg_view('input/plaintext', array(
  9. 'name' => 'text',
  10. 'value' => $site->getPrivateSetting('robots.txt'),
  11. ));
  12. echo '</div>';
  13. echo '<div>';
  14. echo elgg_echo('admin:robots.txt:plugins');
  15. echo elgg_view('input/plaintext', array(
  16. 'value' => elgg_trigger_plugin_hook('robots.txt', 'site', array('site' => $site), ''),
  17. 'readonly' => true,
  18. ));
  19. echo '</div>';
  20. echo '<div>';
  21. echo elgg_view('input/submit', array('value' => elgg_echo('save')));
  22. echo '</div>';