Skip to content

Instantly share code, notes, and snippets.

@estefanionsantos
Last active June 25, 2023 19:13
Show Gist options
  • Save estefanionsantos/0eb8842871cf4564814b23a3af745201 to your computer and use it in GitHub Desktop.
Save estefanionsantos/0eb8842871cf4564814b23a3af745201 to your computer and use it in GitHub Desktop.
Rubricate Div Widget 01
<?php
use Rubricate\Widget\DivWidget;
/* Example 1 */
$div = new DivWidget('Text Here');
echo $div->getElement();
# <div>Text Here</div>
/* Example 2*/
$div = new DivWidget('Some Text');
$div->setAttribute('id', 'id_1');
$div->setAttribute('class', 'highlight');
$div->setAttribute('rel', 'rel_1');
$div->setAttribute('style', 'color: #c00');
echo $div->getElement();
# result: <div id="id_1" class="highlight" rel="rel_1" style="color: #c00">Some Text</div>
# EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment