pearweb_manual
[ class tree: pearweb_manual ] [ index: pearweb_manual ] [ all elements ]

Source for file view-full-note.tpl.php

Documentation is available at view-full-note.tpl.php

  1. <?php
  2. if (!$ajax{
  3.     response_header('View Full Note');
  4.     echo '<h1>View Note</h1>';
  5. ?>
  6. <a href="/notes/admin/index.php<?php $status $status '?status=approved' '';  echo $status ?>" title="go back">Go back to administration</a>
  7. <div style="width: 80%; wrap: virtual; background: #C0C0C0; border: 1px dashed black;">
  8. <?php ?>
  9.  
  10. <p>
  11.  <?php
  12.   if (PEAR::isError($noteContent)) {
  13.       echo 'Problem retrieving the note';
  14.   else {
  15.      echo $noteContent['note_text']
  16.   }   
  17.   ?>
  18. </p>
  19. <?php
  20. if (!$ajax{
  21. ?>
  22. </div>
  23. <?php
  24.     response_footer();
  25.     exit;
  26. }
  27. ?>

Documentation generated on Mon, 11 Mar 2019 16:04:26 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.