PHP Classes

File: aksara/Modules/Apis/Views/index.php

Recommend this page to a friend!
  Classes of Aby Dahana   Aksara   aksara/Modules/Apis/Views/index.php   Download  
File: aksara/Modules/Apis/Views/index.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Aksara
A CodeIgniter based API and CRUD generator
Author: By
Last change: Initial commit for update 5.0.0
Commit for update 4.4.6

1. Grouping the log activities and added the error reporting under logs module;
2. Add the unique validation for path under the group privileges;
3. Add the default permission to access the logs;
4. Refine the error exception when opening the modal;
5. Refine the default administrative theme;
6. Added new phrase;
7. Fixing the thrown error when submitting the form or clicking the link (related to Bootstrap 5);
8. Refine the dashboard view;
9. Fixing the updater;
Commit for update 4.4.6

1. Add the session expiration config during installation;
2. Refine the default column order when set_relation is presents;
3. Add the ability to extends the helpers inside the theme. It'll help the theme developer to create their own function to support the theme;
4. Refine the API documentation view;
5. Add the GeoPHP dependency as the Aksara is already built in with geo-mapping tools;
6. Refine the installation;
7. Refine the expandable and information collapse (under CRUD table)
Date: 4 months ago
Size: 3,577 bytes
 

Contents

Class file image Download
<div class="container-fluid py-3">
    <div class="row">
        <div class="col-md-5 col-xl-4">
            <a href="<?= go_to('services'); ?>" class="card rounded-4 text-white bg-secondary mb-3 --xhr">
                <div class="card-body py-2 px-3">
                    <div class="row align-items-center">
                        <div class="col-3">
                            <i class="mdi mdi-link-variant mdi-3x"></i>
                        </div>
                        <div class="col">
                            <h5 class="card-title mb-0">
                                <?= phrase('Services'); ?>
</h5>
                            <p class="card-text">
                                <?= phrase('Manage service URLs'); ?>
</p>
                        </div>
                    </div>
                </div>
            </a>
        </div>
        <div class="col-md-5 col-xl-4">
            <a href="<?= go_to('clients'); ?>" class="card rounded-4 text-white bg-secondary mb-3 --xhr">
                <div class="card-body py-2 px-3">
                    <div class="row align-items-center">
                        <div class="col-3">
                            <i class="mdi mdi-account-check-outline mdi-3x"></i>
                        </div>
                        <div class="col">
                            <h5 class="card-title mb-0">
                                <?= phrase('Clients'); ?>
</h5>
                            <p class="card-text">
                                <?= phrase('Manage API Clients'); ?>
</p>
                        </div>
                    </div>
                </div>
            </a>
        </div>
    </div>
    <div class="row">
        <div class="col-md-5 col-xl-4">
            <a href="<?= go_to('apis'); ?>" class="card rounded-4 text-white bg-secondary mb-3 --xhr">
                <div class="card-body py-2 px-3">
                    <div class="row align-items-center">
                        <div class="col-3">
                            <i class="mdi mdi-security-network mdi-3x"></i>
                        </div>
                        <div class="col">
                            <h5 class="card-title mb-0">
                                <?= phrase('Permissions'); ?>
</h5>
                            <p class="card-text">
                                <?= phrase('Manage client permissions'); ?>
</p>
                        </div>
                    </div>
                </div>
            </a>
        </div>
        <div class="col-md-5 col-xl-4">
            <a href="<?= go_to('debugger'); ?>" class="card rounded-4 text-white bg-secondary mb-3 --xhr">
                <div class="card-body py-2 px-3">
                    <div class="row align-items-center">
                        <div class="col-3">
                            <i class="mdi mdi-android-debug-bridge mdi-3x"></i>
                        </div>
                        <div class="col">
                            <h5 class="card-title mb-0">
                                <?= phrase('Debug Tools'); ?>
</h5>
                            <p class="card-text">
                                <?= phrase('Debug created API Services'); ?>
</p>
                        </div>
                    </div>
                </div>
            </a>
        </div>
    </div>
</div>