view.feedback.html.hook.php 366 B

12345678910
  1. <?php
  2. namespace zin;
  3. global $lang;
  4. $story = data('story');
  5. if(!empty($story->feedback))
  6. {
  7. $link = a(set::href(createLink('feedback', 'adminview', "feedbackID={$story->feedback}")), " #$story->feedback $story->feedbackTitle");
  8. $html = $lang->story->sourceList[$story->source] . ' ' . $story->sourceNote . $link;
  9. query('#sourceBox')->replaceWith($html);
  10. }