Вход Регистрация
Файл: oc-admin/themes/modern/users/alerts.php
Строк: 249
<?php
/*
 * 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.
 */

    
function addHelp() {
        echo 
'<p>' __('Add, edit or delete information associated to alerts.') . '</p>';
    }
    
osc_add_hook('help_box','addHelp');

    function 
customPageHeader(){ ?>
        <h1><?php _e('Alerts'); ?>
            <a href="#" class="btn ico ico-32 ico-help float-right"></a>
        </h1>
<?php
    
}
    
osc_add_hook('admin_page_header','customPageHeader');

    function 
customPageTitle($string) {
        return 
sprintf(__('Manage alerts &raquo; %s'), $string);
    }
    
osc_add_filter('admin_title''customPageTitle');

    
//customize Head
    
function customHead() { ?>
        <script type="text/javascript">
        $(document).ready(function(){
            //tooltip
            $('.more-tooltip').each(function(){
                $(this).osc_tooltip($(this).attr("categories"),{layout:'gray-tooltip',position:{x:'right',y:'middle'}});
            });

            // check_all bulkactions
            $("#check_all").change(function(){
                var isChecked = $(this).prop("checked");
                $('.col-bulkactions input').each( function() {
                    if( isChecked == 1 ) {
                        this.checked = true;
                    } else {
                        this.checked = false;
                    }
                });
            });

            // dialog delete
            $("#dialog-alert-delete").dialog({
                autoOpen: false,
                modal: true
            });

            // dialog bulk actions
            $("#dialog-bulk-actions").dialog({
                autoOpen: false,
                modal: true
            });
            $("#bulk-actions-submit").click(function() {
                if($("#bulk_actions").attr("value")=="delete") {
                    $("#action").attr("value", "delete_alerts");
                } else if($("#bulk_actions").attr("value")=="activate") {
                    $("#action").attr("value", "status_alerts");
                    $("#status").attr("value", "1");
                } else {
                    $("#action").attr("value", "status_alerts");
                    $("#status").attr("value", "0");
                }
                
                $("#datatablesForm").submit();
            });
            $("#bulk-actions-cancel").click(function() {
                $("#datatablesForm").attr('data-dialog-open', 'false');
                $('#dialog-bulk-actions').dialog('close');
            });
            // dialog bulk actions function
            $("#datatablesForm").submit(function() {
                if( $("#bulk_actions option:selected").val() == "" ) {
                    return false;
                }

                if( $("#datatablesForm").attr('data-dialog-open') == "true" ) {
                    return true;
                }

                $("#dialog-bulk-actions .form-row").html($("#bulk_actions option:selected").attr('data-dialog-content'));
                $("#bulk-actions-submit").html($("#bulk_actions option:selected").text());
                $("#datatablesForm").attr('data-dialog-open', 'true');
                $("#dialog-bulk-actions").dialog('open');
                return false;
            });
            // /dialog bulk actions
        });

        // dialog delete function
        function delete_alert(id) {
            $("#alert_id").attr('value', id);
            $("#dialog-alert-delete").dialog('open');
        };

        </script>
        <?php
    
}
    
osc_add_hook('admin_header','customHead'10);
   
    
$aData      __get('aData');
    
$aRawRows   __get('aRawRows');
    
$sort       Params::getParam('sort');
    
$direction  Params::getParam('direction');

    
$columns    $aData['aColumns'];
    
$rows       $aData['aRows'];
?>
<?php osc_current_admin_theme_path
'parts/header.php' ); ?>
<h2 class="render-title"><?php _e('Manage alerts'); ?></h2>
<div class="relative">
    <div id="users-toolbar" class="table-toolbar">
        <div class="float-right">
            <form method="get" action="<?php echo osc_admin_base_url(true); ?>" id="shortcut-filters" class="inline">
                <input type="hidden" name="page" value="users" />
                <input type="hidden" name="action" value="alerts" />
                <input 
                    id="fPattern" type="text" name="sSearch"
                    value="<?php echo osc_esc_html(Params::getParam('sSearch')); ?>
                    class="input-text input-actions"/>
                <input type="submit" class="btn submit-right" value="<?php echo osc_esc_html__('Find') ); ?>">
            </form>
        </div>
    </div>
    <form class="" id="datatablesForm" action="<?php echo osc_admin_base_url(true); ?>" method="post">
        <input type="hidden" name="page" value="users" />
        <input type="hidden" name="action" id="action" value="status_alerts" />
        <input type="hidden" name="status" id="status" value="0" />
        
        <div id="bulk-actions">
            <label>
                <select name="alert_action" id="bulk_actions" class="select-box-extra">
                    <option value=""><?php _e('Bulk Actions'); ?></option>
                    <option value="activate" data-dialog-content="<?php printf(__('Are you sure you want to %s the selected alerts?'), strtolower(__('Activate'))); ?>"><?php _e('Activate'); ?></option>
                    <option value="deactivate" data-dialog-content="<?php printf(__('Are you sure you want to %s the selected alerts?'), strtolower(__('Deactivate'))); ?>"><?php _e('Deactivate'); ?></option>
                    <option value="delete" data-dialog-content="<?php printf(__('Are you sure you want to %s the selected alerts?'), strtolower(__('Delete'))); ?>"><?php _e('Delete'); ?></option>
                </select> <input type="submit" id="bulk_apply" class="btn" value="<?php echo osc_esc_html__('Apply') ); ?>" />
            </label>
        </div>
        <div class="table-contains-actions">
            <table class="table" cellpadding="0" cellspacing="0">
                <thead>
                    <tr>
                        <?php foreach($columns as $k => $v) {
                            echo 
'<th class="col-'.$k.' '.($sort==$k?($direction=='desc'?'sorting_desc':'sorting_asc'):'').'">'.$v.'</th>';
                        }; 
?>
                    </tr>
                </thead>
                <tbody>
                <?php if( count($rows) > ) { ?>
                    <?php foreach($rows as $key => $row) { ?>
                        <tr>
                            <?php foreach($row as $k => $v) { ?>
                                <td class="col-<?php echo $k?>"><?php echo $v?></td>
                            <?php }; ?>
                        </tr>
                    <?php }; ?>
                <?php } else { ?>
                    <tr>
                        <td colspan="5" class="text-center">
                        <p><?php _e('No data available in table'); ?></p>
                        </td>
                    </tr>
                <?php ?>
                </tbody>
            </table>
            <div id="table-row-actions"></div> <!-- used for table actions -->
        </div>
    </form>
</div>
<?php 
    
function showingResults(){
        
$aData __get('aData');
        echo 
'<ul class="showing-results"><li><span>'.osc_pagination_showing((Params::getParam('iPage')-1)*$aData['iDisplayLength']+1, ((Params::getParam('iPage')-1)*$aData['iDisplayLength'])+count($aData['aRows']), $aData['iTotalDisplayRecords'], $aData['iTotalRecords']).'</span></li></ul>';
    }
    
osc_add_hook('before_show_pagination_admin','showingResults');
    
osc_show_pagination_admin($aData);
?>
<form id="dialog-alert-delete" method="get" action="<?php echo osc_admin_base_url(true); ?>" class="has-form-actions hide" title="<?php echo osc_esc_html(__('Delete alert')); ?>">
    <input type="hidden" name="page" value="users" />
    <input type="hidden" name="action" value="delete_alerts" />
    <input type="hidden" name="alert_id[]" id="alert_id" value="" />
    <input type="hidden" name="alert_user_id" value="" />
    <div class="form-horizontal">
        <div class="form-row">
            <?php _e('Are you sure you want to delete this alert?'); ?>
        </div>
        <div class="form-actions">
            <div class="wrapper">
            <a class="btn" href="javascript:void(0);" onclick="$('#dialog-alert-delete').dialog('close');"><?php _e('Cancel'); ?></a>
            <input id="alert-delete-submit" type="submit" value="<?php echo osc_esc_html__('Delete') ); ?>" class="btn btn-red" />
            </div>
        </div>
    </div>
</form>
<div id="dialog-bulk-actions" title="<?php _e('Bulk actions'); ?>" class="has-form-actions hide">
    <div class="form-horizontal">
        <div class="form-row"></div>
        <div class="form-actions">
            <div class="wrapper">
                <a id="bulk-actions-cancel" class="btn" href="javascript:void(0);"><?php _e('Cancel'); ?></a>
                <a id="bulk-actions-submit" href="javascript:void(0);" class="btn btn-red" ><?php echo osc_esc_html__('Delete') ); ?></a>
                <div class="clear"></div>
            </div>
        </div>
    </div>
</div>
<div id="more-tooltip"></div>
<?php osc_current_admin_theme_path'parts/footer.php' ); ?>
Онлайн: 2
Реклама