id", " " . $lang->webapp->uninstall, 'hiddenwin', "class='text-muted'"); ?>
id", $webapp->name, '', "class='webapp'");?> author;?>
addType == 'custom' ? $webapp->url : $config->webapp->url . "/webapp-showapp-{$webapp->appid}.html";
$popup = '';
$target = '_self';
$misc = '';
if($webapp->target == 'blank') $target = '_blank';
if($webapp->target == 'popup')
{
$width = 0;
$height = 0;
if($webapp->size) list($width, $height) = explode('x', $webapp->size);
$misc = "data-width='" . $width . "' data-height='" . $height . "'";
$popup = 'popup';
}
echo html::a($url, $lang->webapp->useapp, $target, "id='useapp$webapp->id' class='btn btn-success runapp $popup' onclick='addView($webapp->id);' data-title='$webapp->name' $misc");
?>