PHPackages                             nacer/cakephp-adminlte-theme-rtl - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. nacer/cakephp-adminlte-theme-rtl

ActiveCakephp-plugin[Templating &amp; Views](/categories/templating)

nacer/cakephp-adminlte-theme-rtl
================================

CakePHP 3.x AdminLTE Theme.

1.1.0(7y ago)02MITPHPPHP &gt;=5.6

Since Dec 28Pushed 6y agoCompare

[ Source](https://github.com/elbasri/cakephp-adminlte-theme-rtl)[ Packagist](https://packagist.org/packages/nacer/cakephp-adminlte-theme-rtl)[ Docs](https://github.com/maiconpinto/cakephp-adminlte-theme)[ RSS](/packages/nacer-cakephp-adminlte-theme-rtl/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (2)Versions (11)Used By (0)

CakePHP AdminLTE Theme (1.1.0) with RTL Support (ARABIC AdminLTE)
=================================================================

[](#cakephp-adminlte-theme-110-with-rtl-support-arabic-adminlte)

تعريب لوحة القيادة AdminLTE
===========================

[](#تعريب-لوحة-القيادة-adminlte)

### للتحميل والتثبيت

[](#للتحميل-والتثبيت)

لتحميل عميل الملحن: [composer](http://getcomposer.org).

أمر التحميل

```
composer require nacer/cakephp-adminlte-rtl

```

**النص الأصلي لكيفية التثبيت في المكتبة البرمجية CAKEPHP 3**

### Enable Plugin

[](#enable-plugin)

```
// src/Application.php

public function bootstrap()
{
    $this->addPlugin('AdminLTE');
}
```

Before of CakePHP 3.7

```
// config/bootstrap.php

Plugin::load('AdminLTE', ['bootstrap' => true, 'routes' => true]);
```

### Enable Theme

[](#enable-theme)

```
// src/Controller/AppController.php

public function beforeRender(Event $event)
{
    $this->viewBuilder()->setTheme('AdminLTE');

    // Before of CakePHP 3.5
    $this->viewBuilder()->theme('AdminLTE');
}
```

### Enable Form

[](#enable-form)

```
// src/View/AppView.php

public function initialize()
{
    $this->loadHelper('Form', ['className' => 'AdminLTE.Form']);
}
```

### Configure

[](#configure)

```
// new config/adminlte.php file

return [
    'Theme' => [
        'title' => 'AdminLTE',
        'logo' => [
            'mini' => 'ALT',
            'large' => 'AdminLTE'
        ],
        'login' => [
            'show_remember' => true,
            'show_register' => true,
            'show_social' => true
        ],
        'folder' => ROOT,
        'skin' => 'blue'
    ]
];

// config/bootstrap.php

Configure::load('adminlte', 'default');
```

Before of CakePHP 3.7

```
// config/bootstrap.php

Configure::write('Theme', [
    'title' => 'AdminLTE',
    'logo' => [
        'mini' => 'ALT',
        'large' => 'AdminLTE'
    ],
    'login' => [
        'show_remember' => true,
        'show_register' => true,
        'show_social' => true
    ],
    'folder' => ROOT,
    'skin' => 'blue' // default is 'blue'
]);
```

Customize Layout
================

[](#customize-layout)

If you want to [Customize Layout](https://github.com/maiconpinto/cakephp-adminlte-theme/wiki/Customize-Layout)

What's the features
===================

[](#whats-the-features)

### Layouts

[](#layouts)

There are 10 layout files.

- boxed
- collapsed
- default **it's the main layout**
- documentation
- fixed
- lockscreen
- login
- print
- register
- top

### View Blocks

[](#view-blocks)

There are 3 Blocks where you can extend your theme.

- **css**

```
