<?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_mce5');
$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">
var url = '<?php echo osc_admin_base_url(true) . "?page=ajax&action=ajax_images_upload&file="; ?>';
tinyMCE.init({
mode : "textareas",
mobile: {
// theme: 'mobile',
menubar: 'edit view insert format table'
},
menu: {
edit: {title: 'Edit', items: 'undo redo selectall'}
},
menubar: 'edit view insert format table',
width: "500px",
height: "340px",
language: 'en',
branding: false,
plugins : 'advlist autolink lists link image imagetools media charmap preview anchor searchreplace visualblocks code codesample fullscreen insertdatetime media table',
toolbar: 'undo redo | styleselect bold italic underline | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image media | codesample code',
entity_encoding : "raw",
relative_urls: false,
remove_script_host: false,
convert_urls: false,
media_live_embeds: true,
image_advtab: true,
paste_data_images: true,
link_assume_external_targets: true,
link_quicklink: true,
file_picker_types: 'image',
images_upload_url: url,
images_upload_handler: function(blobInfo, success, error, progress) {
var xhr, formData;
xhr = new XMLHttpRequest();
xhr.withCredentials = false;
xhr.open('POST', url);
xhr.upload.onprogress = function (e) {
progress(e.loaded / e.total * 100);
};
xhr.onload = function() {
var json;
json = JSON.parse(xhr.responseText);
success(json.location);
};
formData = new FormData();
formData.append('qqfile', blobInfo.blob(), blobInfo.filename());
xhr.send(formData);
}
});
</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" />
<input id="upload" class="hide" type="file" name="image" >
<?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' ); ?>