PageRenderTime 33ms CodeModel.GetById 6ms RepoModel.GetById 0ms app.codeStats 0ms

/baser/views/elements/admin/search.php

https://github.com/hashing/basercms
PHP | 41 lines | 18 code | 5 blank | 18 comment | 1 complexity | 7548570878f023053f71fdae4ebbeb8d MD5 | raw file
Possible License(s): MIT
  1. <?php
  2. /* SVN FILE: $Id$ */
  3. /**
  4. * [PUBLISH] 検索ボックス
  5. *
  6. * PHP versions 4 and 5
  7. *
  8. * baserCMS : Based Website Development Project <http://basercms.net>
  9. * Copyright 2008 - 2012, baserCMS Users Community <http://sites.google.com/site/baserusers/>
  10. *
  11. * @copyright Copyright 2008 - 2012, baserCMS Users Community
  12. * @link http://basercms.net baserCMS Project
  13. * @package baser.views
  14. * @since baserCMS v 2.0.0
  15. * @version $Revision$
  16. * @modifiedby $LastChangedBy$
  17. * @lastmodified $Date$
  18. * @license http://basercms.net/license/index.html
  19. */
  20. if(empty($search)) {
  21. return;
  22. }
  23. ?>
  24. <div id="Search" class="clearfix">
  25. <h2 class="head">
  26. <?php $bcBaser->img('admin/head_search.png', array('width' => 53, 'height' => 16, 'alt' => '検索')) ?>
  27. </h2>
  28. <div class="body">
  29. <?php $bcBaser->element('searches/'.$search) ?>
  30. </div>
  31. <div class="clearfix close">
  32. <div id="CloseSearch">
  33. <a><?php $bcBaser->img('admin/btn_close.png', array('width' => 14, 'height' => 14, 'alt' => 'Close', 'class' => 'btn')) ?></a>
  34. </div>
  35. </div>
  36. <!-- / #Search clearfix --></div>