PHP Classes

File: Application/Module/Core/View/Default/Controller/AdminModule/Index.tpl

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   Lego PHP   Application/Module/Core/View/Default/Controller/AdminModule/Index.tpl   Download  
File: Application/Module/Core/View/Default/Controller/AdminModule/Index.tpl
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Lego PHP
Blog and shopping cart system
Author: By
Last change:
Date: 7 years ago
Size: 2,320 bytes
 

Contents

Class file image Download
{% extends "Master.tpl"%} {% block content %} <div class="row"> <div class="col-xs-12"> <div class="box"> <div class="box-header"> <h3 class="box-title"> <span class="ucfirst"> {{ Translate('core.installed_modules') }} </span> </h3> </div> <!-- /.box-header --> <div class="box-body no-padding "> <div class="table-responsive"> <form method="post" action="" > <table class="table table-hover table-bordered"> <tbody> <tr> <th >{{ Translate('core.module_title') }}</th> <th >{{ Translate('core.description') }}</th> <th >{{ Translate('core.module_version') }}</th> <th >{{ Translate('core.module_owner') }}</th> <th style="width:100px;" >{{ Translate('core.is_active') }}</th> {% for oModule in aInstalledModules %} <tr class="folder-row" id="folder-row-{{ oModule.module_id }}"> <td>{{ oModule.module_title }}</td> <td>{{ oModule.module_description }}</td> <td>{{ oModule.module_version }}</td> <td>{{ oModule.owner }}</td> <td> <input type="checkbox" class="switch-box" name="is_active" value="1" {% if oModule.is_active %}checked {% endif %} {% if oModule.is_core %} disabled {% endif %} > </td> </tr> {% endfor%} </tbody> </table> </form> </div> </div> </div> <!-- /.box --> </div> </div> {% endblock %}