lightning / view
Library to write some HTML pages in PHP, an alternative to the templating languages.
Requires
- php: ^7.1 || ^8.0
- doctrine/inflector: ^1.3
- psr/http-message: ^1.0
Requires (Dev)
- phpunit/phpunit: ^8.0
- symfony/var-dumper: ^4.2
- dev-master
- 0.3.30
- 0.3.29
- 0.3.28
- 0.3.27
- 0.3.26
- 0.3.25
- 0.3.24
- 0.3.23
- 0.3.22
- 0.3.21
- 0.3.20
- 0.3.19
- 0.3.18
- 0.3.17
- 0.3.16
- 0.3.15
- 0.3.14
- 0.3.13
- 0.3.12
- 0.3.11
- 0.3.10
- 0.3.9
- 0.3.8
- 0.3.7
- 0.3.6
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.6
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.16
- 0.1.15
- 0.1.14
- 0.1.13
- 0.1.11
- 0.1.10
- 0.1.9
- 0.1.8
- 0.1.7
- 0.1.6
- 0.1.5
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
- dev-feature/add_button_disabled_attribute
- dev-feature/button_disabled_attribute
- dev-develop
- dev-feature/htmlentities_doubleencode
- dev-feature/modal_on_buttonbase
- dev-feature/btngroup-sm
- dev-feature/input_step
- dev-feature/button_in_select_values
- dev-feature/checkobx_in_input_grou
- dev-feature/select_fill_value_from_request
- dev-feature/checkbox-refacto
- dev-feature/html
- dev-feature/toggler
- dev-feature/listing_with_new_li
- dev-feature/checkbox_refacto
- dev-feature/factory
- dev-feature/modal_list
- dev-feature/dropdown
- dev-feature/td
- dev-feature/select_in_inputgroup
- dev-feature/iframe
- dev-feature/paginator
This package is auto-updated.
Last update: 2025-03-13 08:07:43 UTC
README
Lightning View is a library to generate HTML views in PHP, an alternative to templating languages.
Example
You can write this PHP code :
<?php
echo _container(
_h1('Hello world'),
_row()->class('text-center', 'mb-4')->content(
_col('Row 1'),
_col('Row 2')->size(6),
_col('Row 3')
),
_inputgroup(
_input(),
_button('Button')
)->class('mb-4'),
_button('Button with tooltip')->tooltip('Tooltip content'),
_button('Button with modal')
->class('ml-4')
->modal()
->header('Modal title')
->body('Modal content')
->footer(_closebutton('Close')),
_buttonGroup(
_button('Button group'),
_button('With dropdown')->dropdown(
_button('Button 1'),
_button('Button 2')
)
)->class('ml-4')
);
Instead of writing this HTML code :
<div class="container">
<h1>Hello world</h1>
<div class="row text-center mb-4">
<div class="col">Row 1</div>
<div class="col-6">Row 2</div>
<div class="col">Row 3</div>
</div>
<div class="input-group mb-4">
<input class="form-control" type="text" />
<div class="input-group-append">
<button class="btn btn-primary" type="button">Button</button>
</div>
</div>
<button type="button" class="mb-4 btn btn-primary" data-toggle="tooltip" title="Tooltip content">
Button with tooltip
</button>
<button class="btn btn-primary ml-4" data-toggle="modal" data-target="#modal-1" type="button">
Button with modal
</button>
<div class="modal fade" id="modal-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Modal title</h5>
<button class="close" data-dismiss="modal" type="button"><span>×</span></button>
</div>
<div class="modal-body">Modal content</div>
<div class="modal-footer">
<button class="btn btn-primary" data-dismiss="modal" type="button">Close</button>
</div>
</div>
</div>
</div>
<div class="btn-group ml-4">
<button class="btn btn-primary" type="button">Button group</button>
<button class="btn dropdown-toggle btn-primary" data-toggle="dropdown" type="button">With dropdown </button>
<div class="dropdown-menu">
<button class="dropdown-item" type="button">Button 1</button>
<button class="dropdown-item" type="button">Button 2</button>
</div>
</div>
</div>
Using elements
You can create an element simply by calling a function with it's name :
<?php
$div = _div();
$span = _span();
echo $div . $span; // <div></div><span></span>
Using properties
You can access HTML properties of an element with it's PHP properties or using functions :
<?php
$div = _div();
// Adding some classes
$div->class('bg-primary', 'text-white');
// Replacing the classes
$div->class = 'bg-secondary text-primary';
// Getting the classes (returns an array with all the classes)
dump($div->class); // ['bg-secondary', 'text-primary']
Adding children
There are two ways to add children to an element :
<?php
// Sending parameters to the constructor
echo _row(
_col('Text 1'),
_col('Text 2')
);
// Using a function : append(), prepend() or content() (to replace all the content)
echo _row()->content(
_col('Text 2'),
_col('Text 3')
)->append(
_col('Text 4')
)->prepend(
_col('Text 1')
);
Both methods accept many types of arguments.
<?php
// String
echo _div('Content');
// Object
echo _div(_span());
// Array
echo _div([_span(), _span()]);
// Mixed
echo _div(_span(), 'Content', [_span(), _span()]);
Closures
You can use closures to interact with an element.
<?php
// $row contains the row
echo _row(function ($row) use ($products) {
foreach ($products as $product) {
$row->append(
_col($product->title)
);
}
});
// You can also use the exec() function
echo _row()->exec(function ($row) use ($products) {
// ...
});
HTML entities
All the strings you pass to the functions will automatically have their HTML entities encoded.
If you want to send an HTML string and avoid this encoding, you can use the _html()
function.
<?php
echo _div('<span></span>'); // <div><span></span></div>;
echo _div(_html('<span></span>')); // <div><span></span></div>
Elements
Link
You can use the blank()
function to open a link in a new tab
<?php
_a('Link')->href('/link')->blank();
To get :
<a href="/link" target="_blank">Link</a>
Button
Buttons have the primary color by default.
You can use the color()
and size()
functions to customize them.
<?php
_button('Button')->color('secondary')->size('sm')->onclick('doSomething()');
To get :
<button class="btn btn-secondary btn-sm" onclick="doSomething()" type="button">Button</button>
Button with link
A <button> tag will automatically change to a <a> tag if you define an href.
<?php
_button('Button')->href('/link');
To get :
<a class="btn btn-primary" href="/link">Button</a>
ButtonGroup
<?php
_buttonGroup(
_button('Button 1'),
_button('Button 2')->color('info'),
_button('Button 3')->color('secondary')
);
InputGroup
<?php
_inputgroup(
_input(),
_button('Button')
);
Dropdown
<?php
_button('Dropdown')->dropdown(
_h6('Header')
'Simple text',
_a('Link'),
_hr(),
_button('Button'),
);
Dropdown in other elements
You can easily use dropdowns in other elements.
<?php
_buttonGroup(
_button('Dropdown')->dropdown(
_button('Button 1'),
_button('Button 2')
)
);
_inputgroup(
_input(),
_button('Dropdown')->dropdown(
_button('Button 1'),
_button('Button 2')
)
);
_navbarnav(
_a('Dropdown')->dropdown(
_a('Link 1'),
_a('Link 2')
)
);
Select
The select()
function displays a dropdown, with a title before, and a <input type="hidden" />
tag to send the selected value in a form.
<?php
_select([
't' => 'Top',
'b' => 'Bottom',
'l' => 'Left',
'r' => 'Right',
])->name('position')->title('Choose a position');
Modal
Calling the modal()
function on a button returns a modal which will be triggered by this button.
You can call the header()
and footer()
functions to customize those parts of the modal.
<?php
_button('Button with modal')
->modal()
->header('Modal title')
->body('Modal content')
->footer(_closebutton('Close'));
License
The MIT License (MIT). Please see License File for more information.