PageRenderTime 50ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/recess/recess/framework/ui/parts/containers/dl.part.php

https://github.com/KrisJordan/recess
PHP | 13 lines | 13 code | 0 blank | 0 comment | 0 complexity | f67b80cffc39337e9d0b9cf0dec33f0d MD5 | raw file
Possible License(s): MIT, GPL-2.0
  1. <?php
  2. Part::input($container, 'Container'); // $this
  3. Part::input($name, 'string');
  4. Part::input($children, 'ArrayBlock');
  5. Part::input($defaultSkin, 'string', 'skins/dd-dt');
  6. Part::input($attrs, 'HtmlAttributes', new HtmlAttributes());
  7. Part::input($classes,'HtmlClasses', new HtmlClasses('container-dl'));
  8. ?>
  9. <!-- begin <?php echo $name ?> container -->
  10. <dl id="<?php echo $container->getId() ?>" <?php echo $classes ?> <?php echo $attrs?>>
  11. <?php echo $children ?>
  12. </dl>
  13. <!-- end <?php echo $name ?> container -->