當前位置: 首頁>>代碼示例>>PHP>>正文


PHP LinkButton::createEdit方法代碼示例

本文整理匯總了PHP中Studip\LinkButton::createEdit方法的典型用法代碼示例。如果您正苦於以下問題:PHP LinkButton::createEdit方法的具體用法?PHP LinkButton::createEdit怎麽用?PHP LinkButton::createEdit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Studip\LinkButton的用法示例。


在下文中一共展示了LinkButton::createEdit方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _

echo Icon::create('trash', 'clickable', ['title' => _('Diese Anfrage zurückziehen')])->asImg(16);
?>
                    </a>
                </td>
            </tr>
        <? endforeach ?>
        <? if ($request_id == $rr->getId()) : ?>
            <tr>
                <td colspan="4">
                    <?php 
echo $this->render_partial('course/room_requests/_request.php', array('request' => $rr));
?>
                </td>
            </tr>
        <? endif ?>
    </table>
<? else : ?>
    <?php 
echo MessageBox::info(_('Zu dieser Veranstaltung sind noch keine Raumanfragen vorhanden.'));
?>
<? endif ?>

<? if (Request::isXhr()) : ?>
    <div data-dialog-button>
        <?php 
echo \Studip\LinkButton::createEdit(_('Neue Raumanfrage erstellen'), $controller->url_for('course/room_requests/new/' . $course_id, $url_params), array('data-dialog' => 'size=big'));
?>
    </div>
<? endif ?>
<?
開發者ID:ratbird,項目名稱:hope,代碼行數:30,代碼來源:index.php

示例2: elseif

                    }?>
                <? elseif (!is_numeric($selected_action)) : ?>
                    <? $plugin = PluginManager::getInstance()->getPlugin($selected_action) ?>
                    <? $template = $plugin->getAdminCourseActionTemplate($semid, $values) ?>
                    <? if ($template) : ?>
                        <?php 
echo $template->render();
?>
                    <? else : ?>
                        <?php 
echo \Studip\LinkButton::createEdit($actions[$selected_action]['title'], URLHelper::getURL(sprintf($actions[$selected_action]['url'], $semid), $actions[$selected_action]['params'] ? $actions[$selected_action]['params'] : array()), $actions[$selected_action]['attributes'] ? $actions[$selected_action]['attributes'] : array());
?>
                    <? endif ?>
                <? else : ?>
                    <?php 
echo \Studip\LinkButton::createEdit($actions[$selected_action]['title'], URLHelper::getURL(sprintf($actions[$selected_action]['url'], $semid), $actions[$selected_action]['params'] ? $actions[$selected_action]['params'] : array()), $actions[$selected_action]['attributes'] ? $actions[$selected_action]['attributes'] : array());
?>
                <? endif ?>
            </td>
        </tr>
    <? } ?>
    </tbody>
<? if ($actions[$selected_action]['multimode']) : ?>
    <tfoot>
        <tr>
            <td colspan="<?php 
echo $colspan;
?>
" style="text-align: right">
                <?php 
echo Studip\Button::createAccept(is_string($actions[$selected_action]['multimode']) ? $actions[$selected_action]['multimode'] : $actions[$selected_action]['title'], $actions[$selected_action]['name']);
開發者ID:ratbird,項目名稱:hope,代碼行數:31,代碼來源:courses.php

示例3: if

                                        <? $material = true ?>
                                    <? endif ?>
                                </ul>
                                <? if (!$material) : ?>
                                    <?php 
echo _("Keine Materialien zu dem Thema vorhanden");
?>
                                <? endif ?>
                            </td>
                        </tr>
                        </tbody>
                    </table>
                    <div style="text-align: center;">
                        <? if ($GLOBALS['perm']->have_studip_perm("tutor", $_SESSION['SessionSeminar'])) : ?>
                            <?php 
echo \Studip\LinkButton::createEdit(_('Bearbeiten'), URLHelper::getURL("dispatch.php/course/topics/edit/" . $topic->getId()), array('data-dialog' => ''));
?>

                            <? if (!$cancelled_dates_locked && $topic->dates->count()) : ?>
                                <?php 
echo \Studip\LinkButton::create(_("Alle Termine ausfallen lassen"), URLHelper::getURL("dispatch.php/course/cancel_dates", array('issue_id' => $topic->getId())), array('data-dialog' => ''));
?>
                            <? endif ?>
                            <? if ($key > 0) : ?>
                                <form action="?" method="post" style="display: inline;">
                                    <input type="hidden" name="move_up" value="<?php 
echo $topic->getId();
?>
">
                                    <input type="hidden" name="open" value="<?php 
echo $topic->getId();
開發者ID:ratbird,項目名稱:hope,代碼行數:31,代碼來源:index.php


注:本文中的Studip\LinkButton::createEdit方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。