admin-metabox-sub-info.html.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <input type="hidden" name="nf_edit_sub" value="1">
  2. <div id="minor-publishing">
  3. <ul class="nf-sub-stats">
  4. <li class="nf-sub-info-seq">
  5. #: <strong><?php echo $seq_num; ?></strong>
  6. </li>
  7. <li class="nf-sub-info-status">
  8. Status: <strong><?php echo $status; ?></strong>
  9. <?php do_action( 'nf_sub_edit_after_status', $post ); ?>
  10. </li>
  11. <li class="nf-sub-info-form">
  12. Form: <strong><?php echo $form_title; ?></strong>
  13. </li>
  14. <li class="nf-sub-info-updated">
  15. <?php _e( 'Updated on: ', 'ninja-forms' ); ?><strong><?php echo $mod_date; ?></strong>
  16. <?php do_action( 'nf_sub_edit_date_modified', $post ); ?>
  17. </li>
  18. <li class="nf-sub-info-created">
  19. <?php _e ( 'Submitted on: ', 'ninja-forms' ); ?><strong><?php echo $sub_date; ?></strong>
  20. <?php do_action( 'nf_sub_edit_date_submitted', $post ); ?>
  21. </li>
  22. <li class="nf-sub-info-user"><?php _e( 'Submitted by: ', 'ninja-forms' ); ?><strong><?php echo $user; ?></strong></li>
  23. </ul>
  24. </div>
  25. <div id="major-publishing-actions" class="nf-sub-actions">
  26. <div id="delete-action"><a class="submitdelete deletion" style="color:red;" href="<?php echo get_delete_post_link( $post->ID ); ?>"><?php _e( 'Move to Trash', 'ninja-forms' ); ?></a></div>
  27. <input name="save" type="submit" class="button button-primary button-large nf-sub-actions-save" id="publish" accesskey="p" value="<?php _e( 'Update', 'ninja-forms' ); ?>">
  28. <span class="spinner"></span>
  29. </div>
  30. <!-- TODO: Move to Stylesheet. -->
  31. <style>
  32. .nf-sub-stats li {
  33. padding: 5px 10px 5px;
  34. }
  35. .nf-sub-info-seq:before,
  36. .nf-sub-info-form:before,
  37. .nf-sub-info-status:before,
  38. .nf-sub-info-created:before,
  39. .nf-sub-info-updated:before,
  40. .nf-sub-info-user:before {
  41. color: #82878c;
  42. font: 400 1.4em dashicons;
  43. vertical-align: top;
  44. padding-right: 5px;
  45. }
  46. .nf-sub-info-seq:before,
  47. .nf-sub-info-form:before,
  48. .nf-sub-info-status:before {
  49. /* Dashicon: Post Screen - Status */
  50. content: "\f173";
  51. }
  52. .nf-sub-info-created:before,
  53. .nf-sub-info-updated:before {
  54. /* Dashicon: Post Screen - Calendar */
  55. content: "\f145";
  56. }
  57. .nf-sub-info-user:before {
  58. /* Dashicon: Admin Menu - Users */
  59. content: "\f110";
  60. }
  61. .nf-sub-actions {
  62. margin: 10px -12px -12px;
  63. }
  64. .nf-sub-actions:after {
  65. content: "";
  66. display: table;
  67. clear: both;
  68. }
  69. .nf-sub-actions .nf-sub-actions-save {
  70. text-align: right;
  71. float: right;
  72. }
  73. </style>