Ejemplo n.º 1
0
<?php

use Destiny\Common\Config;
?>
<meta name="google-play-app" content="app-id=gg.destiny.app.chat">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="<?php 
echo Config::cdn();
?>
/favicon.png">
<link href="<?php 
echo Config::cdn();
?>
/vendor/bootstrap-3.3.5/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="<?php 
echo Config::cdn();
?>
/vendor/font-awesome-4.3.0/css/font-awesome.min.css" rel="stylesheet" media="screen">
<link href="<?php 
echo Config::cdnv();
?>
/web/css/style.min.css" rel="stylesheet" media="screen">
Ejemplo n.º 2
0
        <thead>
          <tr>
            <td>Provider</td>
            <td style="width:100%;">Detail</td>
            <td>Created</td>
            <td>Modified</td>
          </tr>
        </thead>
        <tbody>
        <?php foreach($model->authSessions as $auth): ?>
          <tr>
            <td><?= $auth['authProvider'] ?></td>
            <td><?= (!empty($auth['authDetail'])) ? Tpl::out($auth['authDetail']):Tpl::out($auth['authId']) ?></td>
            <td><?=Tpl::moment(Date::getDateTime($auth['createdDate']), Date::STRING_FORMAT_YEAR)?></td>
            <td><?=Tpl::moment(Date::getDateTime($auth['modifiedDate']), Date::STRING_FORMAT_YEAR)?></td>
          </tr>
        <?php endforeach; ?>
        </tbody>
      </table>
    </div>
  </section>
  <?php endif; ?>
  
  <br />
  
  <?php include Tpl::file('seg/commonbottom.php') ?>
  
  <script src="<?=Config::cdnv()?>/web/js/admin.js"></script>
  
</body>
</html>