Example #1
0
function morethentwo($dataset)
{
    $CI = get_instance();
    foreach ($dataset as $menu) {
        echo '<option value="' . $menu['name'] . '">' . $CI->shop_model->get_parents_by_id($menu['id'], $menu['name']) . '</option>';
        if (isset($menu['childs'])) {
            morethentwo($menu['childs']);
        }
    }
}
Example #2
0
function morethentwo($dataset)
{
    $CI = get_instance();
    foreach ($dataset as $menu) {
        echo '<tr d-title="' . $menu['name'] . '" d-name="' . $menu['name'] . '" title="' . $menu['name'] . '"><td>' . $CI->shop_model->get_parents_by_id($menu['id'], $menu['name']) . '</td><td><button type="button" onclick="document.location.href = \'' . $CI->config->site_url() . 'admin/category_change_used/' . $menu['id'] . '\'" class="btn btn-';
        if ($menu['active']) {
            echo 'success';
        } else {
            echo 'danger';
        }
        echo ' btn-block"><i class="fa fa-power-off"></i></button></td><td><div class="btn-group btn_panel"><button type="button" onclick="document.location.href = \'' . $CI->config->site_url() . 'admin/edit_category/' . $menu['id'] . '\'" class="btn btn-primary"><i class="fa fa-pencil"></i></button><button class="btn btn-danger" onclick="delCategory(\'' . $menu['id'] . '\', \'' . $menu['name'] . '\')"><i class="fa fa-trash fa-fw"></i></button></div></td></tr>';
        if (isset($menu['childs'])) {
            morethentwo($menu['childs']);
        }
    }
}