edit.ipd.html.hook.php 801 B

1234567891011121314151617
  1. <?php
  2. $this->app->loadLang('demand');
  3. $html = "<tr>";
  4. $html .= "<th>{$lang->story->duration}</th>";
  5. $html .= "<td>" . html::select('duration', $this->lang->demand->durationList, $story->duration, "class='form-control chosen'") . "</td>";
  6. $html .= "</tr>";
  7. $html .= "<tr>";
  8. $html .= "<th>{$lang->story->BSA} ";
  9. $html .= "<icon class='icon icon-help' data-toggle='popover' data-trigger='focus hover' data-placement='right' data-tip-class='text-muted popover-sm' data-content='{$lang->demand->bsaTip}'></icon>";
  10. $html .= "</th>";
  11. $html .= "<td>" . html::select('BSA', $this->lang->demand->bsaList, $story->BSA, "class='form-control chosen'") . "</td>";
  12. $html .= "</tr>";
  13. ?>
  14. <script>
  15. $('#category').closest('tr').after(<?php echo json_encode($html);?>);
  16. $('[data-toggle="popover"]').popover();
  17. </script>