当前位置: 首页>>代码示例>>PHP>>正文


PHP html::linkButton方法代码示例

本文整理汇总了PHP中html::linkButton方法的典型用法代码示例。如果您正苦于以下问题:PHP html::linkButton方法的具体用法?PHP html::linkButton怎么用?PHP html::linkButton使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在html的用法示例。


在下文中一共展示了html::linkButton方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: inlink

/**
 * The html template file of index method of upgrade module of ZenTaoPMS.
 *
 * @copyright   Copyright 2009-2012 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
 * @license     LGPL (http://www.gnu.org/licenses/lgpl.html)
 * @author      Chunsheng Wang <chunsheng@cnezsoft.com>
 * @package     upgrade
 * @version     $Id: index.html.php 2605 2012-02-21 07:22:58Z wwccss $
 */
include '../../common/view/header.lite.html.php';
?>
<table align='center' class='table-5 f-14px'>
  <caption><?php 
echo $lang->upgrade->warnning;
?>
</caption>
  <tr>
    <td><?php 
echo $lang->upgrade->warnningContent;
?>
</td>
  </tr>
  <tr>
    <td colspan='2' class='a-center'><?php 
echo html::linkButton($lang->upgrade->common, inlink('selectVersion'));
?>
</td>
  </tr>
</table>
<?php 
include '../../common/view/footer.lite.html.php';
开发者ID:huokedu,项目名称:zentao,代码行数:31,代码来源:index.html.php

示例2: inLink

 <?php 
    echo html::icon($lang->icons['test']);
    ?>
</small>
    </div>
    <div class='actions'><div class='text text-info'><?php 
    echo $lang->mail->sendmailTips;
    ?>
</div></div>
  </div>
  <form class='form-condensed' method='post' target='resultWin'>
    <table class='table table-form'>
      <tr>
        <td><?php 
    echo html::select('to', $users, $app->user->account, "class='form-control chosen'");
    ?>
</td>
        <td class='text-left'>
          <?php 
    echo html::submitButton($lang->mail->test);
    echo html::linkButton($lang->mail->edit, inLink($config->mail->mta == 'sendcloud' ? 'sendcloud' : 'edit'));
    ?>
        </td>
      </tr>
    </table>
  </form>
  <table class='table table-form'><tr><td><iframe id='resultWin' name='resultWin'></iframe></td></tr></table>
</div>
<?php 
    include '../../common/view/footer.html.php';
}
开发者ID:caiwenhao,项目名称:zentao,代码行数:31,代码来源:test.html.php

示例3: inlink

include '../../common/view/header.admin.html.php';
js::set('setCounts', $lang->site->setCounts);
js::set('score', commonModel::isAvailable('score'));
?>
<div class='panel'>
  <div class='panel-heading'><strong><i class='icon-envelope'></i> <?php 
echo $lang->mail->common;
?>
 <i class='icon-arrow-right'></i> <?php 
echo $lang->mail->save;
?>
</strong></div>
  <div class='panel-body'>
    <div class='alert alert-success'>
      <i class='icon-ok-sign'></i>
      <div class='content'><?php 
echo $lang->mail->successSaved;
?>
</div>
    </div>
    <div><?php 
if ($this->post->turnon and commonModel::hasPriv('mail', 'test')) {
    echo html::linkButton($lang->mail->test, inlink('test'));
}
?>
</div>
  </div>
</div>
<?php 
include '../../common/view/footer.admin.html.php';
开发者ID:dyp8848,项目名称:chanzhieps,代码行数:30,代码来源:save.html.php

示例4:

echo $lang->task->left;
?>
</td>
      <td><?php 
echo html::input('left', $task->left);
?>
</td>
    </tr>
    <tr>
      <td><?php 
echo $lang->comment;
?>
</td>
      <td><?php 
echo html::textarea('comment', '', "data-mini='true'");
?>
</td>
    </tr>
    <tr class='text-center'>
      <td colspan="2">
      <?php 
echo html::submitButton('', 'data-inline="true" data-theme="b"');
echo html::linkButton($lang->goback, $this->createLink('task', 'view', "taskID={$task->id}"), 'self', "data-inline='true'");
?>
      </td>
    </tr>
  </table>
</form>
<?php 
include '../../common/view/m.action.html.php';
include '../../common/view/m.footer.html.php';
开发者ID:caiwenhao,项目名称:zentao,代码行数:31,代码来源:m.assignto.html.php

示例5: inlink

</th>
      <td><?php 
echo html::input('reviewedBy', $app->user->account . ', ', 'class=text-1');
?>
</td>
    </tr>
    <tr>
      <th class='rowhead'><?php 
echo $lang->story->comment;
?>
</th>
      <td><?php 
echo html::textarea('comment', '', "rows='8' class='area-1'");
?>
</td>
    </tr>
    <tr>
      <td colspan='2' class='a-center'>
      <?php 
echo html::submitButton();
?>
      <?php 
echo html::linkButton($lang->goback, $app->session->storyList ? $app->session->storyList : inlink('view', "storyID={$story->id}"));
?>
      </td>
    </tr>
  </table>
</form>
<?php 
include '../../common/view/action.html.php';
include '../../common/view/footer.html.php';
开发者ID:shshenpengfei,项目名称:scrum_project_manage_system,代码行数:31,代码来源:review.html.php

示例6: date

 * @copyright   Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
 * @license     LGPL (http://www.gnu.org/licenses/lgpl.html)
 * @author      Congzhi Chen <congzhi@cnezsoft.com>
 * @package     todo
 * @version     $Id: create.html.php 2741 2012-04-07 07:24:21Z areyou123456 $
 * @link        http://www.zentao.net
 */
include '../../common/view/m.header.html.php';
?>
</div>
<form method='post' target='hiddenwin'>
  <?php 
echo html::hidden("date", date('Y-m-d'));
for ($i = 1; $i <= 5; $i++) {
    echo html::input("names[{$i}]", '', "placeholder='{$lang->todo->common}{$lang->todo->name}'");
    echo html::hidden("types[{$i}]", 'custom');
    echo html::hidden("pris[{$i}]", 3);
    echo html::hidden("descs[{$i}]", '');
    echo html::hidden("begins[{$i}]", '2400');
    echo html::hidden("ends[{$i}]", '2400');
}
?>
<p class='a-center'>
  <?php 
echo html::submitButton('', "data-inline='true' data-theme='b'");
echo html::linkButton($lang->goback, $this->createLink('my', 'todo', "type={$this->session->todoType}"), 'self', "data-inline='true'");
?>
</p>
</form>
<?php 
include '../../common/view/m.footer.html.php';
开发者ID:laiello,项目名称:zentaoms,代码行数:31,代码来源:m.batchcreate.html.php

示例7:

?>
</div>
      </fieldset>
      <fieldset class='fieldset-pure'>
        <legend><?php 
echo $lang->files;
?>
</legend>
        <div class='form-group'><?php 
echo $this->fetch('file', 'buildform');
?>
</div>
      </fieldset>
      <div class='actions actions-form'>
        <?php 
echo html::submitButton($lang->save) . html::linkButton($lang->goback, $this->inlink('view', "taskID={$task->id}")) . html::hidden('consumed', $task->consumed);
?>
      </div>
      <?php 
include '../../common/view/action.html.php';
?>
    </div>
  </div>
  <div class='col-side'>
    <div class='main main-side'>
      <fieldset>
        <legend><?php 
echo $lang->task->legendBasic;
?>
</legend>
        <table class='table table-form'> 
开发者ID:nanata1115,项目名称:zentaopms,代码行数:31,代码来源:edit.html.php

示例8: inlink

    ?>
    </td>
  </tr>
  <?php 
}
?>
  </tbody>
  <tfoot>
  <tr>
    <td colspan='6'>
      <?php 
if ($trashes and $type == 'all') {
    ?>
      <div class='table-actions clearfix'>
        <?php 
    echo html::linkButton($lang->action->hideAll, inlink('hideAll'), 'hiddenwin');
    ?>
        <div class='text'><?php 
    echo $lang->action->trashTips;
    ?>
</div>
      </div>
      <?php 
}
?>
      <?php 
$pager->show();
?>
    </td>
  </tr>
  </tfoot>
开发者ID:caiwenhao,项目名称:zentao,代码行数:31,代码来源:trash.html.php

示例9: inLink

?>
<div class='panel'>
  <div class='panel-heading'><strong><i class='icon-envelope'></i> <?php 
echo $lang->mail->common;
?>
 <i class='icon-arrow-right'></i> <?php 
echo $lang->mail->test;
?>
</strong></div>
  <div class='panel-body'>
    <form method='post' id='mailForm'>
      <div class='form-group'><label for='to' class='col-sm-12'><?php 
echo $lang->mail->inputFromEmail;
?>
</label></div>
      <div class='form-group'>
        <div class='col-xs-10 col-sm-6 col-md-3'><?php 
echo html::input('to', $app->user->email, 'class="form-control"');
?>
</div>
        <div class='col-xs-2 col-sm-6 col-md-3'><?php 
echo html::submitButton($lang->mail->test) . html::linkButton($lang->mail->edit, inLink('edit'));
?>
</div>
      </div>
    </form>
  </div>
  <div class='hidden panel-notice'><div id='result'></div></div>
</div>
<?php 
include '../../common/view/footer.admin.html.php';
开发者ID:wenyinos,项目名称:chanzhieps,代码行数:31,代码来源:test.html.php

示例10: inlink

    <td>
      <?php 
    common::printLink('group', 'managepriv', "type=byGroup&param={$group->id}", $lang->group->managePrivByGroup);
    ?>
      <?php 
    common::printLink('group', 'managemember', "groupID={$group->id}", $lang->group->manageMember);
    ?>
      <?php 
    common::printLink('group', 'edit', "groupID={$group->id}", $lang->edit);
    ?>
      <?php 
    common::printLink('group', 'copy', "groupID={$group->id}", $lang->copy);
    ?>
      <?php 
    common::printLink('group', 'delete', "groupID={$group->id}", $lang->delete, "hiddenwin");
    ?>
    </td>
  </tr>
  <?php 
}
?>
  </tbody>
  <tfoot>
  <tr><td colspan='5' class='a-center'><?php 
echo html::linkButton($lang->group->managePrivByModule, inlink('managePriv', 'type=byModule'));
?>
</td></tr>
  </tfoot>
</table>
<?php 
include '../../common/view/footer.html.php';
开发者ID:huokedu,项目名称:zentao,代码行数:31,代码来源:browse.html.php

示例11: inlink

echo html::radio('debug', $lang->mail->debugList, $mailConfig->debug);
?>
</td>
      </tr>
      <tr>
        <th><?php 
echo $lang->mail->charset;
?>
</th>
        <td><?php 
echo html::radio('charset', $config->charsets[$this->cookie->lang], $mailConfig->charset);
?>
</td>
      </tr>

      <tr>
         <td colspan='2' class='text-center'>
           <?php 
echo html::submitButton();
if ($this->config->mail->turnon and $mailExist) {
    echo html::linkButton($lang->mail->test, inlink('test'));
}
echo html::linkButton($lang->mail->reset, inlink('reset'));
?>
         </td>
       </tr>
    </table>
  </form>
</div>
<?php 
include '../../common/view/footer.html.php';
开发者ID:fanscky,项目名称:HTPMS,代码行数:31,代码来源:edit.html.php

示例12: str_replace

</th>
      <td colspan='2'><?php 
echo html::select('mailto[]', $users, str_replace(' ', '', $bug->mailto), 'class="form-control chosen" multiple');
?>
</td>
    </tr>
    <tr>
      <th><?php 
echo $lang->comment;
?>
</th>
      <td colspan='2'><?php 
echo html::textarea('comment', '', "rows='6' class='w-p94'");
?>
</td>
    </tr>
    <tr>
      <th></th><td colspan='2'><?php 
echo html::submitButton() . html::linkButton($lang->goback, $this->server->http_referer);
?>
</td>
    </tr>
  </table>
</form>
<div class='main'>
  <?php 
include '../../common/view/action.html.php';
?>
</div>
<?php 
include '../../common/view/footer.html.php';
开发者ID:nanata1115,项目名称:zentaopms,代码行数:31,代码来源:confirmbug.html.php

示例13:

        <legend><?php 
echo $lang->files;
?>
</legend>
        <div class='form-group'><?php 
echo $this->fetch('file', 'buildform');
?>
</div>
      </fieldset>
      <div class='actions actions-form'>
        <!-- <?php 
echo html::submitButton($lang->save) . html::linkButton($lang->goback, $this->inlink('view', "taskID={$task->id}")) . html::hidden('consumed', $task->consumed);
?>
 -->
        <?php 
echo html::submitButton($lang->save) . html::linkButton($lang->goback, $this->createLink('sprint', 'task', "projectID={$projectID}")) . html::hidden('consumed', $task->consumed);
?>
      </div>
      <?php 
include '../../common/view/action.html.php';
?>
    </div>
  </div>
  <div class='col-side'>
    <div class='main main-side'>
      <fieldset>
        <legend><?php 
echo $lang->task->legendBasic;
?>
</legend>
        <table class='table table-form'> 
开发者ID:XMGmen,项目名称:zentao,代码行数:31,代码来源:edit.html.php

示例14: isset

</th>
        <td>
          <div class='required required-wrapper'></div>
          <?php 
echo html::input('secretKey', isset($mailConfig->secretKey) ? $mailConfig->secretKey : '', "class='form-control'");
?>
        </td>
      </tr>
      <tr>
         <td colspan='2' class='text-center'>
           <?php 
echo html::submitButton();
if ($this->config->mail->turnon and $mailExist) {
    echo html::linkButton($lang->mail->test, inlink('test'));
}
echo html::linkButton($lang->mail->closeSendCloud, inlink('reset'));
if ($this->config->mail->turnon and common::hasPriv('mail', 'sendcloudUser')) {
    echo html::linkButton($lang->mail->sendcloudUser, inlink('sendcloudUser'));
}
?>
         </td>
       </tr>
    </table>
  </form>
  <div class='alert alert-info'><?php 
printf($lang->mail->sendCloudHelp, common::hasPriv('mail', 'sendcloudUser') ? inlink('sendcloudUser') : '#');
?>
</div>
</div>
<?php 
include '../../common/view/footer.html.php';
开发者ID:caiwenhao,项目名称:zentao,代码行数:31,代码来源:sendcloud.html.php

示例15: inlink

      </fieldset>
      <fieldset>
        <legend><?php 
echo $lang->bug->legendAttatch;
?>
</legend>
        <div class='form-group'><?php 
echo $this->fetch('file', 'buildform', 'filecount=2');
?>
</div>
      </fieldset>
      <div class='actions'>
        <?php 
echo html::submitButton();
$browseLink = $app->session->bugList != false ? $app->session->bugList : inlink('browse', "productID={$bug->product}");
echo html::linkButton($lang->goback, $browseLink);
?>
      </div>
      <?php 
include '../../common/view/action.html.php';
?>
    </div>
  </div>
  <div class='col-side'>
    <div class='main main-side'>
      <fieldset>
        <legend><?php 
echo $lang->bug->legendBasicInfo;
?>
</legend>
        <table class='table table-form'>
开发者ID:iamazhi,项目名称:zentaopms,代码行数:31,代码来源:edit.html.php


注:本文中的html::linkButton方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。