You are here

drupalchat-subpanel.tpl.php in DrupalChat 6.2

Same filename and directory in other branches
  1. 7.2 drupalchat-subpanel.tpl.php
  2. 7 drupalchat-subpanel.tpl.php

File

drupalchat-subpanel.tpl.php
View source

<a href="#" class="<?php

print $subpanel['name'];
?> subpanel_toggle">
  <span class="subpanel_title_text">
    <?php

if ($subpanel['icon']) {
  ?>
      <?php

  print $subpanel['icon'];
  ?>
    <?php

}
?>
    <?php

if ($subpanel['text']) {
  ?>
      <?php

  print $subpanel['text'];
  ?>
    <?php

}
?> 
  </span>
</a>
<div class="subpanel">
  <?php

if ($subpanel['header']) {
  ?>
    <div class="subpanel_title">
      <?php

  print $subpanel['header'];
  ?>
      <span class="min">_</span>
    </div>
  <?php

}
?>
  <?php

if ($subpanel['contents']) {
  ?>
    <?php

  print $subpanel['contents'];
  ?>
  <?php

}
?> 
</div>