mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-10-28 15:14:03 +00:00
48 lines
1.8 KiB
PHP
48 lines
1.8 KiB
PHP
<script type="text/template" id="formNavBar-template">
|
|
|
|
<li class="navBarActionsLi">
|
|
<a id="formStyleAction"><?php smuzform_translate_e( 'Styles' ) ?></a>
|
|
</li>
|
|
|
|
<li class="navBarActionsLi">
|
|
<a id="formNotificationAction"><?php smuzform_translate_e( 'Notifications' ) ?></a>
|
|
</li>
|
|
|
|
<li class="navBarActionsLi">
|
|
<a id="formEntriesAction"><?php smuzform_translate_e( 'Entries' ) ?></a>
|
|
</li>
|
|
|
|
<li class="navBarActionsLi">
|
|
<a id="formExportAction"><?php smuzform_translate_e( 'Export' ) ?></a>
|
|
</li>
|
|
|
|
<!-- Modal -->
|
|
<div id="exportModal" class="modal fade" role="dialog">
|
|
<div class="modal-dialog">
|
|
|
|
<!-- Modal content-->
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
<h4 class="modal-title"><?php smuzform_translate_e( 'Export ' ) ?><%= title %></h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label for="formShortcode"><?php smuzform_translate_e( 'Shortcode.' ) ?></label>
|
|
<input id="formShortcode" type="text" readonly value="[sform id='<%= tmpid %>']" class="form-control" />
|
|
<small><?php smuzform_translate_e( 'To display the form insert the shortcode in posts or page content as a new line of ordinary text.' ) ?></small>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="formShortcodeFunc"><?php smuzform_translate_e( 'PHP Template Function.' ) ?></label>
|
|
<textarea id="formShortcodeFunc" class="form-control" readonly>if ( function_exists( 'smuzform_render_form' ) ) { smuzform_render_form('<%= tmpid %>'); }</textarea>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal"><?php smuzform_translate_e( 'Close' ) ?></button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</script>
|