tabs
The class property tabs is an associative array that
can be used to add HTML to the various tabs in the
tab bar.
Normal usage looks like this:
<?php
$tabBar = new androHtmlTabBar('id');
$tabBar->addTab('Users'); // this is the caption *and* the id
$tabBar->tabs['Users']->h('h2','Hello! Welcome to users tab');
?>