selectversion.bizext.html.hook.php 483 B

1234567
  1. <?php
  2. namespace zin;
  3. global $app;
  4. $bizext = $app->control->dao->select('*')->from(TABLE_EXTENSION)->where('code')->like('bizext%')->andWhere('status')->eq('installed')->orderBy('version desc')->fetch();
  5. $version = empty($bizext) ? data('version') : 'pro' . str_replace('.', '_', $bizext->version);
  6. ?>
  7. <script type='text/javascript'>$(function(){$('.picker-box').on('inited', function(_, info){$('[name=fromVersion]').zui('picker').$.setValue('<?php echo $version?>');})});</script>