Вход Регистрация
Файл: templates/default/controllers/admin/content.tpl.php
Строк: 193
<?php
    $this
->addTplJSName([
        
'jquery-cookie',
        
'datatree',
        
'admin-content'
        
]);
    
$this->addTplCSSName('datatree');

    
$this->setPageTitle(LANG_CP_SECTION_CONTENT);

    
$this->addBreadcrumb(LANG_CP_SECTION_CONTENT$this->href_to('content'));

    
$this->addToolButton(array(
        
'class' => 'help',
        
'title' => LANG_HELP,
        
'target' => '_blank',
        
'href'  => LANG_HELP_URL_CONTENT,
    ));

    
$this->addToolButton(array(
        
'class' => 'filter',
        
'title' => LANG_FILTER,
        
'href'  => null,
        
'onclick' => "return icms.modal.openAjax($(this).attr('href'))"
    
));

    
$this->addToolButton(array(
        
'class' => 'delete_filter important',
        
'title' => LANG_CANCEL,
        
'href'  => null,
        
'onclick' => "return contentCancelFilter()"
    
));

    
$this->addToolButton(array(
        
'class' => 'settings',
        
'title' => LANG_CONFIG,
        
'href'  => $this->href_to('ctypes', array('edit'))
    ));

    
$this->addToolButton(array(
        
'class' => 'logs',
        
'title' => LANG_MODERATION_LOGS,
        
'href'  => $this->href_to('controllers', array('edit''moderation''logs''content'))
    ));

    
$this->addToolButton(array(
        
'class' => 'add_folder',
        
'title' => LANG_CP_CONTENT_CATS_ADD,
        
'href'  => $this->href_to('content', array('cats_add'))
    ));

    
$this->addToolButton(array(
        
'class' => 'edit_folder',
        
'title' => LANG_CP_CONTENT_CATS_EDIT,
        
'href'  => $this->href_to('content', array('cats_edit'))
    ));

    
$this->addToolButton(array(
        
'class' => 'delete_folder',
        
'title' => LANG_DELETE_CATEGORY,
        
'href'  => $this->href_to('content', array('cats_delete')),
        
'confirm' => LANG_DELETE_CATEGORY_CONFIRM
    
));

    
$this->addToolButton(array(
        
'class' => 'tree_folder',
        
'title' => LANG_CP_CONTENT_CATS_ORDER,
        
'href'  => $this->href_to('content', array('cats_order')),
        
'onclick' => 'return contentCatsReorder($(this))'
    
));

    
$this->addToolButton(array(
        
'class' => 'add',
        
'title' => LANG_CP_CONTENT_ITEM_ADD,
        
'href'  => $this->href_to('content', array('item_add'))
    ));

    
$this->addToolButton(array(
        
'class' => 'edit show_on_selected',
        
'title' => LANG_CP_CONTENT_ITEMS_EDIT,
        
'href'  => null,
        
'onclick' => 'return icms.datagrid.submitAjax($(this))'
    
));

    
$this->addToolButton(array(
        
'class' => 'move show_on_selected',
        
'title' => LANG_MOVE,
        
'href'  => null,
        
'onclick' => 'return icms.datagrid.submitAjax($(this))'
    
));

    
$this->addToolButton(array(
        
'class' => 'delete show_on_selected',
        
'title' => LANG_DELETE,
        
'href'  => null,
        
'onclick' => "return icms.datagrid.submit($(this), '".LANG_DELETE_SELECTED_CONFIRM."')",
    ));

    
$this->addToolButton(array(
        
'class' => 'basket_put show_on_selected',
        
'title' => LANG_BASKET_DELETE,
        
'href'  => null,
        
'onclick' => "return icms.datagrid.submit($(this), '".LANG_TRASH_DELETE_SELECTED_CONFIRM."')",
    ));

    
$this->applyToolbarHook('admin_content_toolbar');

?>

<h1><?php echo LANG_CP_SECTION_CONTENT?></h1>

<table class="layout">
    <tr>
        <td class="sidebar" valign="top">

            <div id="datatree">
                <ul id="treeData" style="display: none">
                    <?php foreach($ctypes as $id=>$ctype){ ?>
                        <li id="<?php echo $ctype['id'];?>.1" class="lazy folder"><?php echo $ctype['title']; ?></li>
                    <?php ?>
                </ul>
            </div>

            <script type="text/javascript">
                $(function(){

                    $('.cp_toolbar .delete_filter a').hide();
                    current_ctype = 0;
                    is_loaded = false;

                    $('#datagrid_filter').append('<?php echo html_input('hidden''ctype_changed'); ?>');

                    $("#datatree").dynatree({

                        debugLevel: 0,

                        onPostInit: function(isReloading, isError){
                            var path = $.cookie('icms[content_tree_path]');
                            if (!path) { path = '1.1'; }
                            if (path) {
                                $("#datatree").dynatree("getTree").loadKeyPath(path, function(node, status){
                                    if(status == "loaded") {
                                        node.expand();
                                    }else if(status == "ok") {
                                        node.activate();
                                        node.expand();
                                        icms.datagrid.init();
                                    }
                                });
                            }
                        },

                        onActivate: function(node){
                            node.expand();
                            $.cookie('icms[content_tree_path]', node.getKeyPath(), {expires: 7, path: '/'});
                            var key = node.data.key.split('.');
                            icms.datagrid.setURL("<?php echo $this->href_to('content', array('items_ajax')); ?>/" + key[0] + "/" + key[1]);
                            $('.cp_toolbar .filter a').attr('href', "<?php echo $this->href_to('content', array('filter')); ?>/" + key[0]);
                            $('.cp_toolbar .settings a').attr('href', "<?php echo $this->href_to('ctypes', array('edit')); ?>/" + key[0]);
                            $('.cp_toolbar .add a').attr('href', "<?php echo $this->href_to('content', array('item_add')); ?>/" + key[0] + "/" + key[1]);
                            $('.cp_toolbar .edit a').data('url', "<?php echo $this->href_to('content', array('items_edit')); ?>/" + key[0]);
                            $('.cp_toolbar .add_folder a').attr('href', "<?php echo $this->href_to('content', array('cats_add')); ?>/" + key[0] + "/" + key[1]);
                            $('.cp_toolbar .edit_folder a').attr('href', "<?php echo $this->href_to('content', array('cats_edit')); ?>/" + key[0] + "/" + key[1]);
                            $('.cp_toolbar .delete_folder a').attr('href', "<?php echo $this->href_to('content', array('cats_delete')); ?>/" + key[0] + "/" + key[1] + '?csrf_token='+icms.forms.getCsrfToken());
                            $('.cp_toolbar .tree_folder a').attr('href', "<?php echo $this->href_to('content', array('cats_order')); ?>/" + key[0]);
                            $('.cp_toolbar .move a').data('url', "<?php echo $this->href_to('content', array('item_move')); ?>/" + key[0] + "/" + key[1]);
                            $('.cp_toolbar .delete a').data('url', "<?php echo $this->href_to('content', array('item_delete')); ?>/" + key[0] + '?csrf_token='+icms.forms.getCsrfToken());
                            $('.cp_toolbar .basket_put a').data('url', "<?php echo $this->href_to('content', array('item_trash_put')); ?>/" + key[0] + '?csrf_token='+icms.forms.getCsrfToken());
                            $('.cp_toolbar .logs a').attr('href', "<?php echo $this->href_to('controllers', array('edit''moderation''logs''content')); ?>/" + key[0]);
                            if (key[1] == 1){
                                $('.cp_toolbar .edit_folder a').hide();
                                $('.cp_toolbar .delete_folder a').hide();
                            } else {
                                $('.cp_toolbar .edit_folder a').show();
                                $('.cp_toolbar .delete_folder a').show();
                            }
                            if(key[0] !== current_ctype){
                                current_ctype = key[0];
                                contentCancelFilter(true);
                            }else{
                                icms.datagrid.loadRows();
                            }
                            $('.datagrid > tbody > tr.filter > td:last').html('<a title="<?php echo LANG_CP_GRID_COLYMNS_SETTINGS?>" class="columns_settings" href="<?php echo $this->href_to('content', array('grid_columns')); ?>/'+key[0]+'" onclick="return icms.modal.openAjax($(this).attr('href'), {}, undefined, '<?php echo LANG_CP_GRID_COLYMNS_SETTINGS?>')"></a>');
                        },

                        onLazyRead: function(node){
                            node.appendAjax({
                                url: "<?php echo $this->href_to('content', array('tree_ajax')); ?>",
                                data: {
                                    id: node.data.key
                                }
                            });
                        }

                    });
                    icms.datagrid.callback = function (){
                        $('#datagrid td > span[rel = set_class]').each(function(indx){
                            $(this).parents('tr').addClass($(this).data('class'));
                        });
                    };
                    $('.datagrid').tooltip({
                      items: 'td > a:has(.grid_image_preview)',
                      content: function(){
                        var element = $(this);
                        if(element.is('a')){
                          return '<img class="datagrid_image_preview" alt="" src="'+element.attr('href')+'" />';
                        }
                      },
                      position: {
                          using: function(position, feedback){
                              position['max-width'] = '500px';
                              $(this).css(position);
                          }
                      },
                      hide: {duration: 0},
                      show: {duration: 0}
                    });
                });

            </script>

        </td>
        <td class="main" valign="top">

            <?php $this->renderGrid(false$grid); ?>

        </td>
    </tr>
</table>
Онлайн: 2
Реклама