-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring for formsbuilder/builderview.php
- Loading branch information
1 parent
c30c93b
commit 2445192
Showing
1 changed file
with
168 additions
and
115 deletions.
There are no files selected for viewing
283 changes: 168 additions & 115 deletions
283
runway-framework/framework/libs/formsbuilder/builderview.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,135 +1,188 @@ | ||
<html> | ||
<head> | ||
<script type="text/javascript"> | ||
// output the page in JSON format | ||
var pageJSON = '<?php echo rf_string( $page_json ); ?>'; | ||
|
||
<script type="text/javascript"> | ||
// output the page in JSON format | ||
var pageJSON = '<?php echo rf_string($page_json); ?>'; | ||
// output the page in JSON format | ||
var SAVE_ACTION = '<?php echo rf_string( $this->save_action ); ?>'; | ||
</script> | ||
<style type="text/css"> | ||
#new-item-added, #new-item-duplicated { | ||
position: fixed; | ||
top: 70px; | ||
left: 30%; | ||
right: 30%; | ||
background-color: #fff; | ||
font-size: 12pt; | ||
text-align: center; | ||
padding: 20px; | ||
border: 2px solid green; | ||
-moz-border-radius: 20px; | ||
-webkit-border-radius: 20px; | ||
-khtml-border-radius: 20px; | ||
-moz-box-shadow: 0 1px 5px #333; | ||
-webkit-box-shadow: 0 1px 5px #333; | ||
z-index: 101; | ||
display: none; | ||
} | ||
</style> | ||
|
||
// output the page in JSON format | ||
var SAVE_ACTION = '<?php echo rf_string($this->save_action) ?>'; | ||
</script> | ||
<style type="text/css"> | ||
#new-item-added, #new-item-duplicated{ | ||
position:fixed; | ||
top:70px; | ||
left:30%; | ||
right:30%; | ||
background-color:#fff; | ||
font-size: 12pt; | ||
text-align: center; | ||
/*color:#7F7F7F;*/ | ||
padding:20px; | ||
border:2px solid green; | ||
-moz-border-radius: 20px; | ||
-webkit-border-radius:20px; | ||
-khtml-border-radius:20px; | ||
-moz-box-shadow: 0 1px 5px #333; | ||
-webkit-box-shadow: 0 1px 5px #333; | ||
z-index:101; | ||
display:none; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="new-item-added"> | ||
<span class="message"><?php _e('New element added', 'runway'); ?></span> | ||
</div> | ||
<div id="new-item-duplicated"> | ||
<span class="message"><?php _e('New element duplicated', 'runway'); ?></span> | ||
</div> | ||
<div id="new-item-added"> | ||
<span class="message"><?php _e( 'New element added', 'runway' ); ?></span> | ||
</div> | ||
<div id="new-item-duplicated"> | ||
<span class="message"><?php _e( 'New element duplicated', 'runway' ); ?></span> | ||
</div> | ||
|
||
<?php if ( isset( $message ) ): ?> | ||
<div id="message" class="updated below-h2"> | ||
<p> | ||
<?php echo rf_string($message); ?> | ||
</p> | ||
</div><?php else: ?> | ||
<div id="message2" class="updated below-h2" style="display: none;"></div><?php endif; ?> | ||
<form class="save-page" method="post" action="<?php echo esc_url(admin_url('admin.php?page=options-builder&navigation=save-page')); ?>" enctype="multipart/form-data" style="display: none;"> | ||
<input type="hidden" name="action" value="save"> <input type="hidden" class="page" name="page" value=""> | ||
</form> | ||
<div class="settings-dialog"> | ||
<div class="settings-dialog-inside"></div><button class="button accept-changes button-primary"><?php _e( 'Update', 'runway' ); ?></button> | ||
<?php if ( isset( $message ) ) { ?> | ||
<div id="message" class="updated below-h2"> | ||
<p> | ||
<?php echo rf_string( $message ); ?> | ||
</p> | ||
</div><?php } else { ?> | ||
<div id="message2" class="updated below-h2" style="display: none;"></div> | ||
<?php } ?> | ||
|
||
<form class="save-page" method="post" | ||
action="<?php echo esc_url( admin_url( 'admin.php?page=options-builder&navigation=save-page' ) ); ?>" | ||
enctype="multipart/form-data" style="display: none;"> | ||
<input type="hidden" name="action" value="save"> <input type="hidden" class="page" name="page" value=""> | ||
</form> | ||
<div class="settings-dialog"> | ||
<div class="settings-dialog-inside"></div> | ||
<button class="button accept-changes button-primary"><?php _e( 'Update', 'runway' ); ?></button> | ||
</div> | ||
<div id="titlediv"> | ||
<div id="titlewrap" <?php if ( ! $this->resolutions['title'] ) { | ||
echo 'style="display:none;"'; | ||
} ?>> | ||
<label class="hide-if-no-js" style="visibility: hidden;" id="title-prompt-text" | ||
for="title"><?php _e( 'Enter title here', 'runway' ); ?></label> | ||
<input type="text" name="post_title" size="30" tabindex="1" | ||
value="<?php echo esc_attr( $page['settings']['title'] ) ?>" id="title" autocomplete="off"> | ||
</div> | ||
<div class="inside" style="min-height: auto !important;"> | ||
<div id="edit-slug-box" <?php if ( ! $this->resolutions['alias'] ) { | ||
echo 'style="display:none;"'; | ||
} ?>> | ||
<input type="hidden" name="primary-page-slug" value="<?php echo esc_attr( $page['settings']['alias'] ); ?>"> | ||
<strong><?php _e( 'Alias:', 'runway' ); ?></strong> | ||
<span id="slug-static"> | ||
<span id="editable-post-name" title="<?php _e( 'Click to edit the page alias.', 'runway' ); ?>" | ||
class="dynamic-page-title edit-slug"><?php echo rf_string( $page['settings']['alias'] ) ?></span> | ||
<span id="edit-slug-buttons"> | ||
<a href="#post_name" class="edit-slug button hide-if-no-js"> | ||
<?php _e( 'Edit', 'runway' ); ?> | ||
</a> | ||
</span> | ||
<button class="button make-from-title"><?php _e( 'Make slug from title', 'runway' ); ?></button> | ||
</span> | ||
<span id="slug-editor" style="display:none;"> | ||
<input class="slug-editor-input" id="slug-editor-input" value=""> | ||
<button class="button slug-editor-save"> | ||
<span id="slug-editor2"><?php _e( 'Ok', 'runway' ); ?></span> | ||
</button> | ||
<button class="button slug-editor-cancel"><?php _e( 'Cancel', 'runway' ); ?></button> | ||
<button class="button make-from-title"><?php _e( 'Make slug from title', 'runway' ); ?></button> | ||
<button class="button get-primary-slug"><?php _e( 'Reset', 'runway' ); ?></button> | ||
</span> | ||
<span id="editable-post-name-full">???</span> | ||
<span id="alias-error-text"></span> | ||
</div> | ||
<div id="titlediv"> | ||
<div id="titlewrap" <?php if(!$this->resolutions['title']){ echo 'style="display:none;"'; } ?>> | ||
<label class="hide-if-no-js" style="visibility: hidden;" id="title-prompt-text" for="title"><?php _e( 'Enter title here', 'runway' ); ?></label> <input type="text" name="post_title" size="30" tabindex="1" value="<?php echo esc_attr($page['settings']['title']) ?>" id="title" autocomplete="off"> | ||
</div> | ||
<div class="inside" style="min-height: auto !important;"> | ||
<div id="edit-slug-box" <?php if(!$this->resolutions['alias']){ echo 'style="display:none;"'; } ?>> <input type="hidden" name="primary-page-slug" value="<?php echo esc_attr($page['settings']['alias']); ?>"> | ||
<strong><?php _e( 'Alias:', 'runway' ); ?></strong> <span id="slug-static"><span id="editable-post-name" class="dynamic-page-title edit-slug" title="<?php _e( 'Click to edit the page alias.', 'runway' ); ?>"><?php echo rf_string($page['settings']['alias']) ?></span> <span id="edit-slug-buttons"><a href="#post_name" class="edit-slug button hide-if-no-js"><?php _e( 'Edit', 'runway' ); ?></a></span> <button class="button make-from-title"><?php _e( 'Make slug from title', 'runway' ); ?></button></span> <span id="slug-editor" style="display:none;"><input class="slug-editor-input" id="slug-editor-input" value=""><button class="button slug-editor-save"><span id="slug-editor2"><?php _e( 'Ok', 'runway' ); ?></span></button> <button class="button slug-editor-cancel"><?php _e( 'Cancel', 'runway' ); ?></button> <button class="button make-from-title"><?php _e( 'Make slug from title', 'runway' ); ?></button> <button class="button get-primary-slug"><?php _e('Reset', 'runway'); ?></button></span> <span id="editable-post-name-full">???</span> | ||
<span id="alias-error-text"></span> | ||
</div> | ||
</div> | ||
<div class="clear"></div> | ||
<div class="page-builder-wrapper"> | ||
<div id="menu-management-liquid"> | ||
<div id=""> | ||
<div class="nav-tabs-nav"> | ||
<div class="nav-tab-wrapper nav-tabs-wrapper"> | ||
<div class="nav-tabs"> | ||
<a href="javascript:void(0);" class="nav-tab nav-tab-active" data-switchto="elements-list"> | ||
<?php _e( 'Options', 'runway' ); ?> | ||
</a> | ||
<a href="javascript:void(0);" class="nav-tab" data-switchto="page-global-settings" <?php if ( ! $this->resolutions['settings'] ) { | ||
echo 'style="display:none;"'; | ||
} ?>> | ||
<?php _e( 'Settings', 'runway' ); ?> | ||
</a> | ||
<?php if ( isset( $help_tabs_admin ) ) { ?> | ||
<a href="javascript:void(0);" class="nav-tab" data-switchto="page-help-tabs"> | ||
<?php _e( 'Help tabs', 'runway' ); ?> | ||
</a> | ||
<?php } ?> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="clear"></div> | ||
<div class="page-builder-wrapper"> | ||
<div id="menu-management-liquid"> | ||
<div id=""> | ||
<div class="nav-tabs-nav"> | ||
<div class="nav-tab-wrapper nav-tabs-wrapper"> | ||
<div class="nav-tabs"> | ||
<a href="javascript:void(0);" class="nav-tab nav-tab-active" data-switchto="elements-list"><?php _e( 'Options', 'runway' ); ?></a> <a href="javascript:void(0);" class="nav-tab" data-switchto="page-global-settings" <?php if(!$this->resolutions['settings']){ echo 'style="display:none;"'; } ?>><?php _e( 'Settings', 'runway' ); ?></a> <?php if(isset($help_tabs_admin)) { ?> <a href="javascript:void(0);" class="nav-tab" data-switchto="page-help-tabs"><?php _e( 'Help tabs', 'runway' ); ?></a> <?php } ?> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="menu-edit"> | ||
<div id="nav-menu-header"> | ||
<div id="submitpost" class="submitbox"> | ||
<div class="major-publishing-actions"> | ||
<div class="elements-list tabIn"> | ||
<div id="add-tab" class="new-element ntab button" data-type='tab' <?php if(!$this->resolutions['options-tabs']){ echo 'style="display:none;"'; } ?>> | ||
<img src="<?php echo FRAMEWORK_URL ?>framework/images/add-icon.png"> <?php _e( 'Tab', 'runway' ); ?> | ||
</div> | ||
<div id="add-container" class="new-element ncontainer button" data-type='container' <?php if(!$this->resolutions['options-containers']){ echo 'style="display:none;"'; } ?>> | ||
<img src="<?php echo FRAMEWORK_URL ?>framework/images/add-icon.png"> <?php _e( 'Container', 'runway' ); ?> | ||
</div> | ||
<div id="add-field" class="new-element nfield button" data-type='field' <?php if(!$this->resolutions['options-fields']){ echo 'style="display:none;"'; } ?>> | ||
<img src="<?php echo FRAMEWORK_URL ?>framework/images/add-icon.png"> <?php _e( 'Field', 'runway' ); ?> | ||
</div> | ||
<p class="info"> | ||
<?php _e( 'Drag or click to add elements to the page below.', 'runway' ); ?> | ||
</p> | ||
<p class="info"> | ||
<a class="expand-all" href="#">Expand all</a> / <a class="collapse-all" href="#"><?php _e('Collapse all', 'runway'); ?></a> | ||
</p> | ||
</div> | ||
<div class="major-publishing-actions"> | ||
<div class="publishing-action"> | ||
<input type="submit" class="button-primary save-button" value="<?php _e( 'Save Settings', 'runway' ); ?>"> | ||
</div> | ||
</div> | ||
<div class="clear"></div> | ||
<div class="menu-edit"> | ||
<div id="nav-menu-header"> | ||
<div id="submitpost" class="submitbox"> | ||
<div class="major-publishing-actions"> | ||
<div class="elements-list tabIn"> | ||
<div id="add-tab" class="new-element ntab button" data-type='tab' | ||
<?php if ( ! $this->resolutions['options-tabs'] ) { | ||
echo 'style="display:none;"'; | ||
} ?>> | ||
<img src="<?php echo FRAMEWORK_URL; ?>framework/images/add-icon.png"> | ||
<?php _e( 'Tab', 'runway' ); ?> | ||
</div> | ||
<div class="clear"></div> | ||
</div> | ||
</div> | ||
<div id="post-body"> | ||
<div id="post-body-content"> | ||
<div class="elements-list page-layer accept-tab tabIn"> | ||
<div class="clear"></div> | ||
<div id="add-container" class="new-element ncontainer button" data-type='container' | ||
<?php if ( ! $this->resolutions['options-containers'] ) { | ||
echo 'style="display:none;"'; | ||
} ?>> | ||
<img src="<?php echo FRAMEWORK_URL ?>framework/images/add-icon.png"> | ||
<?php _e( 'Container', 'runway' ); ?> | ||
</div> | ||
<div id="add-field" class="new-element nfield button" data-type='field' | ||
<?php if ( ! $this->resolutions['options-fields'] ) { | ||
echo 'style="display:none;"'; | ||
} ?>> | ||
<img src="<?php echo FRAMEWORK_URL ?>framework/images/add-icon.png"> <?php _e( 'Field', 'runway' ); ?> | ||
</div> | ||
<div class="page-global-settings tabIn"> | ||
<?php _e( 'Page settings', 'runway' ); ?> | ||
</div><?php if(isset($help_tabs_admin)) { ?> | ||
<div class="page-help-tabs tabIn" style="display: none"> | ||
<?php echo rf_string($help_tabs_admin->render_options_builder_page("admin.php?page={$page['settings']['alias']}")); ?> | ||
</div><?php } ?> | ||
<p class="info"> | ||
<?php _e( 'Drag or click to add elements to the page below.', 'runway' ); ?> | ||
</p> | ||
<p class="info"> | ||
<a class="expand-all" href="#">Expand all</a> | ||
/ | ||
<a class="collapse-all" href="#"><?php _e( 'Collapse all', 'runway' ); ?></a> | ||
</p> | ||
</div> | ||
<div class="clear"></div> | ||
</div> | ||
<div class="clear"></div> | ||
<div id="nav-menu-footer"> | ||
<div class="major-publishing-actions"> | ||
<div class="publishing-action"> | ||
<input type="submit" class="button-primary save-button" value="<?php _e( 'Save Settings', 'runway' ); ?>"> | ||
</div> | ||
</div> | ||
<div class="clear"></div> | ||
</div> | ||
<div class="clear"></div> | ||
</div> | ||
</div> | ||
<div id="post-body"> | ||
<div id="post-body-content"> | ||
<div class="elements-list page-layer accept-tab tabIn"> | ||
<div class="clear"></div> | ||
</div> | ||
<div class="page-global-settings tabIn"> | ||
<?php _e( 'Page settings', 'runway' ); ?> | ||
</div> | ||
<?php if ( isset( $help_tabs_admin ) ) { ?> | ||
<div class="page-help-tabs tabIn" style="display: none"> | ||
<?php echo rf_string( $help_tabs_admin->render_options_builder_page( "admin.php?page={$page['settings']['alias']}" ) ); ?> | ||
</div> | ||
<?php } ?> | ||
</div> | ||
<div class="clear"></div> | ||
</div> | ||
<div class="clear"></div> | ||
<div id="nav-menu-footer"> | ||
<div class="major-publishing-actions"> | ||
<div class="publishing-action"> | ||
<input type="submit" class="button-primary save-button" value="<?php _e( 'Save Settings', 'runway' ); ?>"> | ||
</div> | ||
</div> | ||
<div class="clear"></div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
</div> | ||
</div> |