Файл: oc-admin/themes/modern/appearance/add_widget.php
Строк: 158
<?php if ( ! defined('OC_ADMIN')) exit('Direct access is not allowed.');
/*
* Copyright 2014 Osclass
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
osc_enqueue_script('jquery-validate');
osc_enqueue_script('tiny_mce');
$info = __get("info");
$widget = __get("widget");
if( Params::getParam('action') == 'edit_widget' ) {
$title = __('Edit widget');
$edit = true;
$button = osc_esc_html( __('Save changes') );
} else {
$title = __('Add widget');
$edit = false;
$button = osc_esc_html( __('Add widget') );
}
osc_add_hook('admin_page_header','customPageHeader');
function customPageHeader(){
if( Params::getParam('action') == 'edit_widget' ) {
$title = __('Edit widget');
} else {
$title = __('Add widget');
}
?>
<h1><?php echo $title; ?></h1>
<?php
}
function customPageTitle($string) {
return sprintf(__('Appearance » %s'), $string);
}
osc_add_filter('admin_title', 'customPageTitle');
function customHead() {
$info = __get("info");
$widget = __get("widget");
if( Params::getParam('action') == 'edit_widget' ) {
$title = __('Edit widget');
$edit = true;
$button = osc_esc_html( __('Save changes') );
} else {
$title = __('Add widget');
$edit = false;
$button = osc_esc_html( __('Add widget') );
}
?>
<script type="text/javascript">
tinyMCE.init({
mode : "textareas",
width: "500px",
height: "340px",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_align : "left",
theme_advanced_toolbar_location : "top",
plugins : [
"advlist autolink lists link image charmap preview anchor",
"searchreplace visualblocks code fullscreen",
"insertdatetime media table contextmenu paste"
],
entity_encoding : "raw",
theme_advanced_buttons1_add : "forecolorpicker,fontsizeselect",
theme_advanced_buttons2_add: "media",
theme_advanced_disable : "styleselect",
extended_valid_elements : "script[type|src|charset|defer]",
relative_urls : false,
remove_script_host : false,
convert_urls : false
});
</script>
<script type="text/javascript">
$(document).ready(function(){
// Code for form validation
$("form[name=widget_form]").validate({
rules: {
description: {
required: true
}
},
messages: {
description: {
required: '<?php echo osc_esc_js(__("Description: this field is required")); ?>.'
}
},
errorLabelContainer: "#error_list",
wrapper: "li",
invalidHandler: function(form, validator) {
$('html,body').animate({ scrollTop: $('h1').offset().top }, { duration: 250, easing: 'swing'});
},
submitHandler: function(form){
$('button[type=submit], input[type=submit]').attr('disabled', 'disabled');
form.submit();
}
});
});
</script>
<?php }
osc_add_hook('admin_header', 'customHead', 10);
osc_current_admin_theme_path( 'parts/header.php' ); ?>
<div id="widgets-page">
<div class="widgets">
<div id="item-form">
<ul id="error_list"></ul>
<form name="widget_form" action="<?php echo osc_admin_base_url(true); ?>" method="post">
<input type="hidden" name="action" value="<?php echo ( $edit ? 'edit_widget_post' : 'add_widget_post' ); ?>" />
<input type="hidden" name="page" value="appearance" />
<?php if( $edit) { ?>
<input type="hidden" name="id" value="<?php echo Params::getParam('id', true); ?>" />
<?php } ?>
<input type="hidden" name="location" value="<?php echo Params::getParam('location', true); ?>" />
<fieldset>
<div class="input-line">
<label><?php _e('Description (for internal purposes only)'); ?></label>
<div class="input">
<input type="text" class="large" name="description" value="<?php if( $edit ) { echo osc_esc_html($widget['s_description']); } ?>" />
</div>
</div>
<div class="input-description-wide">
<label><?php _e('HTML Code for the Widget'); ?></label>
<textarea name="content" id="body"><?php if( $edit ) { echo osc_esc_html($widget['s_content']); } ?></textarea>
</div>
<div class="form-actions">
<input type="submit" value="<?php echo $button; ?>" class="btn btn-submit" />
</div>
</fieldset>
</form>
</div>
</div>
</div>
<?php osc_current_admin_theme_path( 'parts/footer.php' ); ?>