Skip to content

Instantly share code, notes, and snippets.

@LionsAd
Created November 12, 2012 22:36
Show Gist options
  • Save LionsAd/4062504 to your computer and use it in GitHub Desktop.
Save LionsAd/4062504 to your computer and use it in GitHub Desktop.
Theme Component Library - Draft
<?php
component('ordered_list',
array(
component('item', 'a', array('id' => 'id-a')),
'b',
'c'),
array('id' => 'x')
);
// would be equivalent to the render array:
array(
'#theme' => 'ordered_list',
items => array(
'a' => array(
'#theme' => 'item',
'item' => 'a',
'attributes' => array('id' => 'id-a')
),
'b',
'c'
),
'attributes' => array('id' => 'x')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment