File: /www/wwwroot/oa.sanjiangapp.com/app/sys/webapp/view/obtain.html.php
<?php
/**
* The obtain view file of ZDOO module of ZDOO.
*
* @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Yidong Wang <Yidong@cnezsoft.com>
* @package webapp
* @version $Id$
* @link http://www.zdoo.com
*/
?>
<?php include '../../common/view/header.html.php';?>
<?php include '../../common/view/treeview.html.php';?>
<div class='main-row'>
<div class='side-col col-3'>
<form class='side-search mgb-20' method='post' action='<?php echo inlink('obtain', 'type=bySearch');?>'>
<div class='input-group'>
<?php echo html::input('key', $this->post->key, "class='form-control' placeholder='{$lang->webapp->bySearch}'");?>
<span class='input-group-btn'>
<button type='submite' id='submit' class='btn btn-submit'><i class='icon-search icon'></i></button>
</span>
</div>
</form>
<div class='list-group'>
<?php
echo html::a(inlink('obtain', 'type=byUpdatedTime'), $lang->webapp->byUpdatedTime, "class='list-group-item' id='byupdatedtime'");
echo html::a(inlink('obtain', 'type=byAddedTime'), $lang->webapp->byAddedTime, "class='list-group-item' id='byaddedtime'");
echo html::a(inlink('obtain', 'type=byDownloads'), $lang->webapp->byDownloads, "class='list-group-item' id='bydownloads'");
?>
</div>
<div class='panel panel-sm'>
<div class='panel-heading'><?php echo $lang->webapp->byCategory;?></div>
<div class='panel-body'>
<?php $moduleTree ? print($moduleTree) : print($lang->webapp->errorGetModules);?>
</div>
</div>
</div>
<div class='main-col col-9'>
<div class='panel'>
<div class='panel-body'>
<?php if($webapps):?>
<div id='webapps' class='cards webstore webapps pd-0 mg-0'>
<?php foreach($webapps as $webapp):?>
<div class='col-md-6 col-sm-6'><div class='card' id='webapp<?php echo $webapp->id?>'>
<div class='media webapp-icon'><img src='<?php echo empty($webapp->icon) ? $this->config->webRoot . 'theme/default/images/main/webapp-default.png' : $config->webapp->url . $webapp->icon?>' width='72' height='72' /></div>
<div class='card-heading' class='webapp-name' title='<?php echo $webapp->name?>'>
<strong><?php commonModel::printLink('webapp', 'view', "webappID=$webapp->id&type=api", $webapp->name, "class='apiapp'");?></strong> <small class='text-muted'><?php echo $webapp->author;?></small>
</div>
<div class='card-content text-muted' title='<?php echo $webapp->abstract?>'><?php echo $webapp->abstract;?></div>
<div class='card-actions webapp-actions'>
<div class='pull-right'>
<div class='btn-group'>
<?php
$url = $webapp->url;
$misc = '';
if($webapp->target == 'iframe')
{
$width = 0;
$height = 0;
if($webapp->size) list($width, $height) = explode('x', $webapp->size);
$misc = "data-toggle='modal' data-type='iframe' data-width='" . $width . "' data-height='" . $height . "'";
}
if($webapp->target == 'blank') $misc = "target='_blank'";
echo isset($installeds[$webapp->id]) ? html::a('',"<i class='icon-check icon'></i> " . $lang->webapp->installed, 'disabled="disabled" class="btn"') : html::a('###', $lang->webapp->install, "class='btn btn-primary webapp-install' data-url='" . inLink('install', "webappID={$webapp->id}") . "'");
echo html::a($url, $lang->webapp->preview, "id='useapp$webapp->id' class='btn' data-title='$webapp->name' $misc");
?>
</div>
</div>
</div>
</div></div>
<?php endforeach;?>
</div>
<div class='table-footer'><?php if($pager) $pager->show();?></div>
<?php elseif(!$fetchResult):?>
<div class='box-title'><?php echo $lang->webapp->errorOccurs;?></div>
<div class='box-content'><?php echo $lang->webapp->errorGetExtensions;?></div>
<?php else:?>
<div class='box-content text-muted'><?php echo $lang->webapp->noApps;?></div>
<?php endif;?>
</div>
</div>
</div>
</div>
<?php js::set('installed', $lang->webapp->installed)?>
<script>
$('#<?php echo $type;?>').addClass('active')
$('#module<?php echo $moduleID;?>').addClass('active')
</script>
<?php include '../../common/view/footer.html.php';?>