help.php 519 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Instructions on how to peform photo tagging
  4. *
  5. * @author Cash Costello
  6. * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2
  7. */
  8. $button = elgg_view('output/url', array(
  9. 'text' => elgg_echo('tidypics:quit'),
  10. 'href' => '#',
  11. 'id' => 'tidypics-tagging-quit',
  12. ));
  13. $instructions = elgg_echo('tidypics:taginstruct', array($button));
  14. ?>
  15. <div id="tidypics-tagging-help" class="elgg-module elgg-module-popup tidypics-tagging-help pam hidden">
  16. <?php echo $instructions; ?>
  17. </div>