1: <?php
2:
3:
4:
5:
6: class BrowsePanel extends Control{
7: private $label = "";
8:
9: public function setLabel($label) {
10: $this->label = $label;
11: }
12: public function onrender(){
13: $this->tagName = 'div';
14: $this->setPreTag('<div class="card card-primary">
15: <div class="card-header">
16: <h3 class="card-title">
17: <span style="font-size:22px;" class="pull-left hidden-xs showopacity fa fa-globe"></span>
18: &nbsp;Browse&nbsp;
19: <a href="<?php echo getEventURL(\'print\', \'\', \''. SphpBase::sphp_router()->getCurrentRequest() .'\'); ?>" target="__blank" title="Print">
20: <span style="font-size:22px;" class="pull-right hidden-xs showopacity fa fa-print"></span></a>
21: </h3>
22: </div>
23: <div class="card-block scrollbar" style="overflow: auto; white-space: nowrap;">
24: <div class="block">
25:
26:
27: ');
28: $this->class = "content";
29: $this->setPostTag('</div></div></div>');
30:
31: }
32:
33: }
34: