Skip to content
Snippets Groups Projects
Commit fec28a1a authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

upodate docs

parent 7711e1eb
Branches
No related tags found
No related merge requests found
...@@ -20,12 +20,35 @@ $renderAdminLTE->addRow([HTML code]); ...@@ -20,12 +20,35 @@ $renderAdminLTE->addRow([HTML code]);
## Columns ## Columns
The grid has a width of 12 columns. With giving a number 1..12 you can set the witdth of your output container in the current row.
```txt
| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____
12 x 1 | : : : : : : : : : : : |
|____:____:____:____:____:____:____:____:____:____:____:____|
___________________________________________________________
full: | |
1 x 12 |___________________________________________________________|
_____________________________ _____________________________
half: | | |
2 x 6 |_____________________________|_____________________________|
______________ _____________________________ ______________
3-6-3 | | | |
|______________|_____________________________|______________|
```
### Syntax ### Syntax
```php ```php
$renderAdminLTE->addCol([HTML code], [Width]); $renderAdminLTE->addCol([HTML code], [Width]);
``` ```
### Return
{string} html code
### Parameters ### Parameters
* [HTML code] - {string} Html code of the visible content * [HTML code] - {string} Html code of the visible content
......
...@@ -54,6 +54,8 @@ tools | html code for upper right corner ...@@ -54,6 +54,8 @@ tools | html code for upper right corner
$renderAdminLTE->getCard(array ( $renderAdminLTE->getCard(array (
'type' => 'primary', 'type' => 'primary',
'variant' => 'solid', 'variant' => 'solid',
'tb-remove' => 1,
'tb-collapse' => 1,
'title' => 'I am a card', 'title' => 'I am a card',
'tools' => '123', 'tools' => '123',
'text' => 'Hello everybody out there!', 'text' => 'Hello everybody out there!',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment