Вход Регистрация
Файл: source/app/objects/admin/component/templates/groups/index.php
Строк: 330
<?php
$lang 
Lang::singleton();
global 
$config_database
$clsWidth 50;
foreach (
$this->colsCustom as $k => $v) {
    if (
$k == 'action') {
        
$matches = array();
        
preg_match_all('/<a[^>]*>([^<]*)</a>/iU'$this->colsCustom['action'], $matches);
        
        
        
$clsWidth $clsWidthcount($matches[0]);
        
$this->colsCustom[$k] = implode(' '$matches[0]);
    }
}

foreach (
$this->colsWidth as $k => $v) {
    if (
$k == 'action') {
        
$this->colsWidth[$k] =  $clsWidth;
    }
}

?>
<?php 
if (!empty($this->form)) { ?>
    </div>
<?php 
$buttons 
'<div class="btn-group"><a class="btn" onclick="searchModal();"><i class="icon-search"></i> '.$lang->line('search').'</a>';
$q $this->queryString;
if (isset(
$q['xtype']))
    unset(
$q['xtype']);
$buttons .= '<a class="btn" href="?'.http_build_query($q'''&').'"><i class="icon-remove-sign"></i></a></div>'." n";
$buttons .= '<a type="button" class="btn btn-info" onclick="newRecord();"> <i class="icon-plus icon-white"></i> '.$lang->line('add').'</a>'." n";

__toolbar($buttons,$this->conf);
?>
    <div class="container">
    <?php ?>

    <div class='<?php echo $this->conf['color']; ?>'>
        <?php
        $q 
$this->queryString;
        
$q['xtype'] = 'index';
        if (isset(
$q['xid']))
            unset(
$q['xid']);
        
?>
        <form method="post" action="?<?php echo http_build_query($q'''&'); ?>" id="table" class="form-horizontal">
            <?php //require dirname(__FILE__) . '/search_form.php'; ?>
            <input type="hidden" name="src[page]" id="srcPage" value="<?php echo $this->pageIndex?>"/>
            <input type="hidden" name="src[limit]" id="srcLimit" value="<?php echo $this->limit?>"/>
            <input type="hidden" name="src[order_field]" id="srcOrder_field" value="<?php echo $this->orderField?>"/>
            <input type="hidden" name="src[order_type]" id="srcOrder_type" value="<?php echo $this->orderType?>"/>
            <?php
                
if (is_file($this->conf['theme_path'].'/paginate.php')){
                    require 
$this->conf['theme_path'].'/paginate.php';
                }else{
                    if (
is_file($this->theme_default.'/paginate.php')){
                        require 
$this->theme_default.'/paginate.php';
                    }
                } 
             
?>
            <div style="overflow: auto;">
                <table class="table table-bordered table-hover list table-condensed">
                    <thead>
                        <tr>
                            <?php foreach ($fields as $k => $field) { ?>
                                <?php if (in_array($field$this->fields)) { ?>
                                    <th onclick="order('<?php echo ($field?>');" style="cursor:pointer; text-align:center; color:#333333;text-shadow: 0 1px 0 #FFFFFF;  background-color: #e6e6e6;
                                        <?php if (isset($this->colsWidth[$field])) { ?>width:<?php echo $this->colsWidth[$field]; ?>px; 
                                        <?php } else if (isset($this->colsWidth[$k])) { ?>width:<?php echo $this->colsWidth[$k]; ?>px; <?php ?>">
                                        <?php echo htmlspecialchars((isset($this->fieldsAlias[$field])) ? $this->fieldsAlias[$field] : $field); ?>
                                        <?php if ($this->orderField == $field) { ?>
                                            <i class="arrow <?php echo $this->orderType?>"></i>
                                        <?php ?>
                                    </th>
                                <?php } else { ?>
                                    <th style="cursor:default;  text-align:center; color:#333333;text-shadow: 0 1px 0 #FFFFFF;  background-color: #e6e6e6;
                                        <?php if (isset($this->colsWidth[$field])) { ?>width:<?php echo $this->colsWidth[$field]; ?>px; 
                                        <?php } else if (isset($this->colsWidth[$k])) { ?>width:<?php echo $this->colsWidth[$k]; ?>px; <?php ?>">
                                        <?php echo htmlspecialchars((isset($this->fieldsAlias[$field])) ? $this->fieldsAlias[$field] : $field); ?>
                                    </th>
                                <?php ?>
                            <?php ?>
                        </tr>
                    </thead>
                    <tbody>
                        <?php
                        
if (!empty($this->results)) {
                            
$s = array();
                            foreach (
$this->fields as $field) {
                                
$s[] = '{' $field '}';
                            }
                            
$s[] = '{ppri}';
                            
$s[] = '{no}';
                            
$offset = ($this->pageIndex 1) * $this->limit;
                            
?>
                            <?php
                            
foreach ($this->results as $result) {
                                
$r = array();
                                foreach (
$this->fields as $k => $field) {
                                    
$__value '';
                                    
$__aryField explode('.'$field);
                                    if (
count($__aryField) > 1) {
                                        
$__tmp $result;
                                        foreach (
$__aryField as $key => $value) {
                                            if (
is_array($__tmp[$value])) {
                                                
$__tmp $__tmp[$value];
                                            } else {
                                                
$__value $__tmp[$value];
                                            }
                                        }
                                    } else if (
count($__aryField) == 1) {
                                        
$__value $result[$field];
                                    }
                                    if (isset(
$this->form[$field]) && isset($this->form[$field]['element'][0])) {
                                        switch (
trim(strtolower($this->form[$field]['element'][0]))) {
                                            case 
'radio':
                                            case 
'autocomplete':
                                            case 
'select':
                                                
$e $this->form[$field]['element'];
                                                
$options = array();
                                                
$params = array();
                                                if (isset(
$e[1]) && !empty($e[1])) {
                                                    if (
array_key_exists('option_table'$e[1])) {
                                                        if (
array_key_exists('option_key'$e[1]) &&
                                                                
array_key_exists('option_value'$e[1])) {
                                                            
$_dao = new GenericDao($e[1]['option_table'], $this->da);
                                                            
$params['fields'] = array($e[1]['option_key'], $e[1]['option_value']);
                                                            
$rs $_dao->find($params);
                                                            if (!empty(
$rs)) {
                                                                foreach (
$rs as $v) {
                                                                    
$options[$v[$e[1]['option_key']]] = $v[$e[1]['option_value']];
                                                                }
                                                            }
                                                        }
                                                    } else {
                                                        
$options $e[1];
                                                    }
                                                }
                                                
$this->form[$field]['element'][1] = $options;
                                                if (isset(
$this->form[$field]['element'][1]) &&
                                                        !empty(
$this->form[$field]['element'][1]) &&
                                                        
is_array($this->form[$field]['element'][1]) &&
                                                        !empty(
$this->form[$field]['element'][1][$__value])
                                                ) {
                                                    
$r[] = htmlspecialchars($this->form[$field]['element'][1][$__value]);
                                                } else {
                                                    
$r[] = '';
                                                }
                                                break;
                                            case 
'editor':
                                                
$r[] = $__value;
                                                break;
                                            case 
'checkbox':
                                                
$value explode(','$__value);
                                                if (!empty(
$value) && is_array($value) && count($value) > 0) {
                                                    
$tmp = array();
                                                    foreach (
$value as $k1 => $v1) {
                                                        if (isset(
$this->form[$field]['element'][1][$v1])) {
                                                            
$tmp[] = $this->form[$field]['element'][1][$v1];
                                                        }
                                                    }
                                                    
$value implode(', '$tmp);
                                                } else {
                                                    
$value '';
                                                }

                                                
$r[] = htmlspecialchars($value);
                                                break;

                                            case 
'textarea':
                                                
$r[] = nl2br(htmlspecialchars($__value));
                                                break;
                                            default:
                                                
$r[] = htmlspecialchars($__value);
                                                break;
                                        }
                                    } else {
                                        
$r[] = htmlspecialchars($__value);
                                    }
                                }
                                
$offset++;
                                
$ppri "";
                                
$_tmp "";
                                foreach (
$this->primaryKey as $f) {
                                    
$__value '';
                                    
$__aryField explode('.'$f);
                                    if (
count($__aryField) > 1) {
                                        
$__tmp $result;
                                        foreach (
$__aryField as $key => $value) {
                                            if (
is_array($__tmp[$value])) {
                                                
$__tmp $__tmp[$value];
                                            } else {
                                                
$__value $__tmp[$value];
                                            }
                                        }
                                    } else if (
count($__aryField) == 1) {
                                        
$__value $result[$f];
                                    }
                                    
$ppri .= $_tmp 'key[' $f ']=' htmlspecialchars($__value);
                                    
$_tmp '&';
                                }
                                
$r[] = $ppri;
                                
$r[] = $offset;
                                
?>
                                <tr>
                                    <?php foreach ($fields as $field) { ?>
                                        <td style="<?php if (isset($this->colsAlign[$field])) { ?>text-align:<?php echo $this->colsAlign[$field]; ?>;<?php ?>">
                                            <?php if (isset($this->colsCustom[$field])) { ?>
                                                <?php echo str_replace($s$r$this->colsCustom[$field]); ?>
                                            <?php } else { ?>
                                                <?php
                                                $__value 
'';
                                                
$__aryField explode('.'$field);
                                                if (
count($__aryField) > 1) {
                                                    
$__tmp $result;
                                                    foreach (
$__aryField as $key => $value) {
                                                        if (
is_array($__tmp[$value])) {
                                                            
$__tmp $__tmp[$value];
                                                        } else {
                                                            
$__value $__tmp[$value];
                                                        }
                                                    }
                                                } else if (
count($__aryField) == 1) {
                                                    
$__value $result[$field];
                                                }
                                                if (isset(
$this->form[$field]) && isset($this->form[$field]['element'][0])) {
                                                    switch (
trim(strtolower($this->form[$field]['element'][0]))) {
                                                        case 
'radio':
                                                        case 
'autocomplete':
                                                        case 
'select':
                                                            
$e $this->form[$field]['element'];
                                                            
$options = array();
                                                            
$params = array();
                                                            if (isset(
$e[1]) && !empty($e[1])) {
                                                                if (
array_key_exists('option_table'$e[1])) {
                                                                    if (
array_key_exists('option_key'$e[1]) &&
                                                                            
array_key_exists('option_value'$e[1])) {
                                                                        
$_dao = new GenericDao($e[1]['option_table'], $this->da);
                                                                        
$params['fields'] = array($e[1]['option_key'], $e[1]['option_value']);
                                                                        
$rs $_dao->find($params);
                                                                        if (!empty(
$rs)) {
                                                                            
$rs $rs[$e[1]['option_table']];
                                                                            foreach (
$rs as $v) {
                                                                                
$options[$v[$e[1]['option_key']]] = $v[$e[1]['option_value']];
                                                                            }
                                                                        }
                                                                    }
                                                                } else {
                                                                    
$options $e[1];
                                                                }
                                                            }
                                                            
$this->form[$field]['element'][1] = $options;

                                                            if (isset(
$this->form[$field]['element'][1]) &&
                                                                    !empty(
$this->form[$field]['element'][1]) &&
                                                                    
is_array($this->form[$field]['element'][1]) &&
                                                                    !empty(
$this->form[$field]['element'][1][$__value])) {
                                                                echo 
nl2br(htmlspecialchars($this->form[$field]['element'][1][$__value]));
                                                            }
                                                            break;
                                                        case 
'editor':
                                                            echo 
$__value;
                                                            break;
                                                        case 
'checkbox':
                                                            
$value explode(','$__value);
                                                            if (!empty(
$value) && is_array($value) && count($value) > 0) {
                                                                
$tmp = array();
                                                                foreach (
$value as $k1 => $v1) {
                                                                    if (isset(
$this->form[$field]['element'][1][$v1])) {
                                                                        
$tmp[] = $this->form[$field]['element'][1][$v1];
                                                                    }
                                                                }
                                                                
$value implode(', '$tmp);
                                                            } else {
                                                                
$value '';
                                                            }
                                                            echo 
htmlspecialchars($value);
                                                            break;
                                                        case 
'textarea':
                                                            echo 
nl2br(htmlspecialchars($__value));
                                                            break;
                                                        case 
'file':
                                                            if (
file_exists(ROOT '/public/media/files/' $__value)) {
                                                                echo 
'<a href="' strUrl('admin/download.php?file='.$__value). '">' $__value '</a>';
                                                            } else {
                                                                echo 
$__value;
                                                            }
                                                            break;
                                                        case 
'image':
                                                            if (
file_exists(__IMAGE_UPLOAD_REAL_PATH__ 'thumbnail_' $__value)) {
                                                                echo 
"<img src='" __IMAGE_PATH__ "thumbnail_" $__value "' />";
                                                            } else if (
file_exists(__IMAGE_UPLOAD_REAL_PATH__ 'mini_thumbnail_' $__value)) {
                                                                echo 
"<img src='" __IMAGE_PATH__ "mini_thumbnail_" $__value "' />";
                                                            } else {
                                                                echo 
'';
                                                            }
                                                            break;
                                                        case 
'date':
                                                            if (
is_date($__value)){
                                                                echo 
date($date_format_convert[__DATE_FORMAT__],strtotime($__value));
                                                            }else{
                                                                    echo 
'';
                                                                }
                                                                break;
                                                        case 
'datetime':
                                                            if (
is_date($__value)){
                                                                echo 
date($date_format_convert[__DATE_FORMAT__].' H:i:s',strtotime($__value));
                                                            }else{
                                                                    echo 
'';
                                                                }
                                                                break;
                                                        default:
                                                            echo 
nl2br(htmlspecialchars($__value));
                                                            break;
                                                    }
                                                } else {
                                                    echo 
nl2br(htmlspecialchars($__value));
                                                }
                                                
?>
                                            <?php ?>
                                        </td>
                                    <?php ?>
                                </tr>
                            <?php ?>
                        <?php } else { ?>
                            <tr>
                                <td colspan="<?php echo count($fields); ?>"><?php echo $lang->line('no_data_to_display');?></td>
                            </tr>
                        <?php ?>
                    </tbody>
                </table>
            </div>
            <?php
                
if (is_file($this->conf['theme_path'].'/paginate.php')){
                    require 
$this->conf['theme_path'].'/paginate.php';
                }else{
                    if (
is_file($this->theme_default.'/paginate.php')){
                        require 
$this->theme_default.'/paginate.php';
                    }
                } 
             
?>
        </form>
    </div>
    <script type="text/javascript">
    <?php
     
foreach ($this->results as $result) { 
        
$rs1 null;
        if (
file_exists(__DATABASE_CONFIG_PATH__ '/' $config_database['default']["database"]. '/'.sha1('com_'.$result['crud_components']['id']) . '/' $result['crud_components']['component_table'] . '.php')) {
            
$rs1 str_replace("<?php exit; ?>n"""file_get_contents(__DATABASE_CONFIG_PATH__ '/' $config_database['default']["database"]. '/'.sha1('com_'.$result['crud_components']['id']) . '/' $result['crud_components']['component_table'] . '.php'));
        }
        if (!empty(
$rs1)){
    
?>
        $('#rmc_<?php echo $result['crud_components']['id'?>').click(function(){ 
            removeConfig('<?php echo $result['crud_components']['id']; ?>','<b><?php echo htmlspecialchars($result['crud_components']['component_name']); ?></b>');
           });
    <?php }else{ ?>
        $('#rmc_<?php echo $result['crud_components']['id'?>').addClass('disabled');
    <?php ?>
    <?php ?>
    </script>
    <img src="<?php echo __MEDIA_PATH__?>icons/loading.gif" style="display: none;" />
    <script>

                    function searchModal() {
                        $.sModal({
                            header:'Search box',
                            animate: 'fadeDown',
                            content:'<div id="scrud_model_search"><center><img src="<?php echo __MEDIA_PATH__?>icons/loading.gif" /></center></div>',
                            onShow: function(id){ 
                                <?php
                                $q 
$this->queryString;
                                
$q['xtype'] = 'modalform';
                                if (isset(
$q['key']))
                                    unset(
$q['key']);
                                
?>
                                $('#' + id).find('#scrud_model_search').load('?<?php echo http_build_query($q'''&'); ?>');
                                 setTimeout(function(){
                                     $('#' + id).removeClass('fadeInDown');
                                    },1000);
                            },
                            buttons: [
                                {
                                    text: ' <i class="icon-search icon-white"></i>  Search  ',
                                    addClass: 'btn-primary',
                                    click: function(id, data) {
                                        crudSearch();
                                        $.sModal('close', id);
                                    }
                                },
                                {
                                    text: ' Cancel ',
                                    click: function(id, data) {
                                        $.sModal('close', id);
                                    }
                                }
                            ]
                        });
                    }

                    function removeConfig(com_id,com_name){
                        $.sModal({
                            image: '<?php echo __MEDIA_PATH__?>icons/error.png',
                            animate: 'fadeDown',
                            content:"<?php echo $lang->line('you_want_to_remove'); ?> "+com_name+"'s <?php echo $lang->line('configure'); ?>?",
                            buttons: [
                                {
                                    text: ' <i class="icon-remove icon-white"></i>  Remove  ',
                                    addClass: 'btn-danger',
                                    click: function(id, data) {
                                        window.location='<?php echo strUrl('admin/scrud/removeConfig.php?com_id='); ?>'+com_id;
                                        $.sModal('close', id);
                                    }
                                },
                                {
                                    text: ' Cancel ',
                                    click: function(id, data) {
                                        $.sModal('close', id);
                                    }
                                }
                            ]
                        });
                    }

                    function newRecord() {
<?php
$q 
$this->queryString;
$q['xtype'] = 'form';
if (isset(
$q['key']))
    unset(
$q['key']);
?>
                        window.location = "?<?php echo http_build_query($q'''&'); ?>";
                    }

                    function __view(id) {
<?php
$q 
$this->queryString;
$q['xtype'] = 'view';
if (isset(
$q['key']))
    unset(
$q['key']);
?>
                        window.location = "?<?php echo http_build_query($q'''&'); ?>&" + id;
                    }

                    function __edit(id) {
<?php
$q 
$this->queryString;
$q['xtype'] = 'form';
if (isset(
$q['key']))
    unset(
$q['key']);
?>
                        window.location = "?<?php echo http_build_query($q'''&'); ?>&" + id;
                    }

                    function __delete(id) {
<?php
$q 
$this->queryString;
$q['xtype'] = 'delconfirm';
if (isset(
$q['key']))
    unset(
$q['key']);
?>
                        window.location = "?<?php echo http_build_query($q'''&'); ?>&" + id;
                    }

                    function order(field) {
                        var oldField = document.getElementById('srcOrder_field').value;
                        var oldType = document.getElementById('srcOrder_type').value;
<?php
$q 
$this->queryString;
$q['xtype'] = 'index';
if (isset(
$q['key']))
    unset(
$q['key']);
?>
                        var url = "?<?php echo http_build_query($q'''&'); ?>";
                        url += "&src[o]=" + field;
                        if (field == oldField) {
                            if (oldType == 'asc') {
                                url += "&src[t]=desc"
                            } else {
                                url += "&src[t]=asc"
                            }
                        } else {
                            url += "&src[t]=asc"
                        }
                        window.location = url;
                    }
                    $(document).ready(function() {
                        $('title').html('<?php echo $this->title?>');
                        //$('table > tbody > tr').each(function(){
                        //$($(this).find('td:last > input').get(0)).hide();
                        //$($(this).find('td:last > input').get(1)).hide();
                        //$($(this).find('td:last > input').get(2)).hide();
                        //});
                    });
</script>
<iframe src="" id="crudIframe" height="0" width="0" style="width: 0px; line-height:0px; height: 0px; border: 0px; padding: 0px; margin: 0px; display:none;"></iframe>
<script>
            function crudSearch() {
                document.getElementById('srcPage').value = 1;
                document.getElementById('table').submit();
            }
            function crudExport() {
                $('#crudIframe').attr({src: '<?php echo strUrl('admin/scrud/exportCsv.php?table='.$this->table.'&xtype=exportcsv'); ?>'});
            }
            function crudExportAll() {
                $('#crudIframe').attr({src: '<?php echo strUrl('admin/scrud/exportCsv.php?table='.$this->table.'&xtype=exportcsvall'); ?>'});
            }
</script>
Онлайн: 1
Реклама