2017 © Pedro Peláez
 

lithium-library li3_element

Element helper for Lithium

image

jasonroyle/li3_element

Element helper for Lithium

  • Wednesday, March 11, 2015
  • by jasonroyle
  • Repository
  • 2 Watchers
  • 1 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Element Helper for Lithium

Installation

Composer

composer require jasonroyle/li3_element

Git

git submodule add https://github.com/jasonroyle/li3_element.git libraries/li3_element

Enable the Library

Make the application aware of the library by adding the following to app/config/bootstrap/libraries.php., (*1)

Libraries::add('li3_element');

Render

Renders an element., (*2)

Params

  • $element (string)
  • $data (array, optional)

Return

Rendered HTML (string), (*3)

Grid

Iterates through items and renders an element per item. The elements are wrapped in row and column divs and returned as a rendered HTML string., (*4)

Params

  • $element (string)
  • $data (array)
  • $options (array, optional)

Return

Rendered HTML (string), (*5)

Examples

By default the first value of the data array will be used as the items of which to iterate through., (*6)

The following example iterates through posts, replaces the post value of the data array with the individual post and passes the data on to the element to render., (*7)

echo $this->element->grid('post', ['post' => $posts]);

To pass more data to each of the elements simply append the data array., (*8)

echo $this->element->grid('post', [
    'post' => $posts,
    'foo' => $foo,
    'bar' => $bar
]);

Set columns, offset and max options to control how the items are displayed., (*9)

The following example renders 3 posts per row, ignores the first 2 posts and limits the amount of displayed posts to 9., (*10)

echo $this->element->grid('post', ['post' => $posts], [
    'columns' => 3,
    'offset' => 2,
    'max' => 9
]);

Appling attributes to rows and columns., (*11)

The following example applies the class="row" attribute to each row and the class="column" attribute to each column., (*12)

echo $this->element->grid('post', ['post' => $posts], [
    'columns' => 5,
    'row' => ['class' => 'row'],
    'column' => ['class' => 'column']
]);

The following example renders the same as the last except the attribute class="column first" is applied to every first column of each row and the attribute class="column last" is applied to every last column of each row., (*13)

echo $this->element->grid('post', ['post' => $posts], [
    'columns' => 5,
    'row' => ['class' => 'row'],
    'column' => ['class' => 'column'],
    'first_column' => ['class' => 'column first'],
    'last_column' => ['class' => 'column last']
]);

The following example renders the same as the last except the last row contains only one column. The attribute class="column first last" is applied to this column., (*14)

echo $this->element->grid('post', ['post' => $posts], [
    'columns' => 5,
    'max' => 11,
    'row' => ['class' => 'row'],
    'column' => ['class' => 'column'],
    'first_column' => ['class' => 'column first'],
    'last_column' => ['class' => 'column last'],
    'first_and_last_column' => ['class' => 'column first last']
]);

The Versions

11/03 2015

dev-master

9999999-dev

Element helper for Lithium

  Sources   Download

MIT

The Requires

 

by Jason Royle

11/03 2015

dev-develop

dev-develop

Element helper for Lithium

  Sources   Download

MIT

The Requires

 

by Jason Royle

11/03 2015

0.2.1

0.2.1.0

Element helper for Lithium

  Sources   Download

MIT

The Requires

 

by Jason Royle

18/02 2015

0.2.0

0.2.0.0

Element helper for Lithium

  Sources   Download

MIT

The Requires

 

by Jason Royle