Файл: oc-admin/themes/modern/comments/frm.php
Строк: 143
<?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');
$comment = __get('comment');
if(isset($comment['pk_i_id'])) {
//editing...
$title = __("Edit comment");
$action_frm = "comment_edit_post";
$btn_text = osc_esc_html( __("Update comment"));
} else {
//adding...
$title = __("Add comment");
$action_frm = "add_comment_post";
$btn_text = osc_esc_html( __('Add'));
}
function customPageHeader() { ?>
<h1><?php _e('Listing'); ?></h1>
<?php
}
osc_add_hook('admin_page_header','customPageHeader');
function customPageTitle($string) {
return sprintf(__('Edit comment » %s'), $string);
}
osc_add_filter('admin_title', 'customPageTitle');
//customize Head
function customHead() {
CommentForm::js_validation(true);
}
osc_add_hook('admin_header','customHead', 10);
$comment = __get('comment');
?>
<?php osc_current_admin_theme_path( 'parts/header.php' ); ?>
<h2 class="render-title"><?php echo $title; ?></h2>
<div id="language-form">
<ul id="error_list"></ul>
<form name="language_form" action="<?php echo osc_admin_base_url(true); ?>" method="post">
<input type="hidden" name="action" value="<?php echo $action_frm; ?>" />
<input type="hidden" name="page" value="comments" />
<input type="hidden" name="id" value="<?php echo (isset($comment['pk_i_id'])) ? $comment['pk_i_id'] : '' ?>" />
<div class="form-horizontal">
<div class="form-row">
<div class="form-label"><?php _e('Title'); ?></div>
<div class="form-controls">
<?php CommentForm::title_input_text($comment); ?>
</div>
</div>
<div class="form-row">
<div class="form-label"><?php _e('Author'); ?></div>
<div class="form-controls">
<?php CommentForm::author_input_text($comment); ?>
<?php if(isset($comment['fk_i_user_id']) && $comment['fk_i_user_id']!='') {
_e("Registered user"); ?>
<a href="<?php echo osc_admin_base_url(true); ?>?page=users&action=edit&id=<?php echo $comment['fk_i_user_id']; ?>"><?php _e('Edit user'); ?></a>
<?php }?>
</div>
</div>
<div class="form-row">
<div class="form-label"><?php _e("Author's e-mail"); ?></div>
<div class="form-controls">
<?php CommentForm::email_input_text($comment); ?>
</div>
</div>
<div class="form-row">
<div class="form-label"><?php _e('Status'); ?></div>
<div class="form-controls">
<div class="form-label-checkbox">
<?php echo ( $comment['b_active'] ? __('Active') : __('Inactive') ); ?> ( <a href="<?php echo osc_admin_base_url( true ); ?>?page=comments&action=status&id=<?php echo $comment['pk_i_id']; ?>&value=<?php echo ( ( $comment['b_active'] == 1) ? 'INACTIVE' : 'ACTIVE' ); ?>"><?php echo ( ( $comment['b_active'] == 1 ) ? __('Deactivate') : __('Activate') ); ?></a> )
</div>
</div>
</div>
<div class="form-row">
<div class="form-label"><?php _e('Status'); ?></div>
<div class="form-controls">
<div class="form-label-checkbox">
<?php echo ( $comment['b_enabled'] ? __('Unblocked') : __('Blocked') ); ?> ( <a href="<?php echo osc_admin_base_url( true ); ?>?page=comments&action=status&id=<?php echo $comment['pk_i_id']; ?>&value=<?php echo ( ( $comment['b_enabled'] == 1) ? 'DISABLE' : 'ENABLE' ); ?>"><?php echo ( ( $comment['b_enabled'] == 1 ) ? __('Block') : __('Unblock') ); ?></a> )
</div>
</div>
</div>
<div class="form-row">
<div class="form-label"><?php _e('Comment'); ?></div>
<div class="form-controls input-description-wide">
<?php CommentForm::body_input_textarea($comment); ?>
</div>
</div>
</div>
<div class="form-actions">
<a href="javascript:history.go(-1)" class="btn"><?php _e('Cancel'); ?></a>
<input type="submit" value="<?php echo $btn_text; ?>" class="btn btn-submit" />
</div>
</form>
</div>
<?php osc_current_admin_theme_path( 'parts/footer.php' ); ?>