first commit

This commit is contained in:
2025-03-12 17:06:23 +01:00
commit 2241f7131f
13185 changed files with 1692479 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
/**
* Desktop widget components helper
*/
function st_open_widget($name,$title)
{
$name=preg_replace("/[\s]*/",'_',$name);
return
'
<div class="qpanel_list_main st_round_box" id="widget-'.$name.'">
<div class="st_round_box_header">'.$title.'</div>
<div class="st_round_box_content">
';
}
function st_close_widget()
{
return
'
</div>
</div>
';
}