本文整理汇总了PHP中AbstractAction类的典型用法代码示例。如果您正苦于以下问题:PHP AbstractAction类的具体用法?PHP AbstractAction怎么用?PHP AbstractAction使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了AbstractAction类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: executed
/**
* @see AbstractAction::executed()
*/
protected function executed()
{
AbstractAction::executed();
// forward to list page
HeaderUtil::redirect('index.php?page=BBCodeList&deletedBBCodeID=' . $this->bbcodeID . '&packageID=' . PACKAGE_ID . SID_ARG_2ND_NOT_ENCODED);
exit;
}
开发者ID:joaocustodio,项目名称:EmuDevstore-1,代码行数:10,代码来源:BBCodeDeleteAction.class.php
示例2: execute
/**
* @see Action::execute()
*/
public function execute()
{
AbstractAction::execute();
// check permission
WCF::getUser()->checkPermission('admin.user.canBanUser');
if (count($this->userIDs) > 0) {
// check permission
$sql = "SELECT\tDISTINCT groupID\n\t\t\t\tFROM\twcf" . WCF_N . "_user_to_groups\n\t\t\t\tWHERE\tuserID IN (" . implode(',', $this->userIDs) . ")";
$result = WCF::getDB()->sendQuery($sql);
while ($row = WCF::getDB()->fetchArray($result)) {
if (!Group::isAccessibleGroup($row['groupID'])) {
throw new PermissionDeniedException();
}
}
// update user
$sql = "UPDATE\twcf" . WCF_N . "_user\n\t\t\t\tSET\tbanned = 0\n\t\t\t\tWHERE\tuserID IN (" . implode(',', $this->userIDs) . ")";
WCF::getDB()->sendQuery($sql);
// unmark users
UserEditor::unmarkAll();
// reset sessions
Session::resetSessions($this->userIDs);
}
$this->executed();
if (!empty($this->url)) {
HeaderUtil::redirect($this->url);
} else {
// set active menu item
WCFACP::getMenu()->setActiveMenuItem('wcf.acp.menu.link.user.management');
// show succes message
WCF::getTPL()->assign('message', 'wcf.acp.user.unban.success');
WCF::getTPL()->display('success');
}
exit;
}
开发者ID:joaocustodio,项目名称:EmuDevstore-1,代码行数:37,代码来源:UserUnbanAction.class.php
示例3: executed
/**
* @see AbstractAction::executed()
*/
protected function executed()
{
parent::executed();
// forward to list page
HeaderUtil::redirect('index.php?page=BBCodeList&packageID=' . PACKAGE_ID . SID_ARG_2ND_NOT_ENCODED);
exit;
}
开发者ID:joaocustodio,项目名称:EmuDevstore-1,代码行数:10,代码来源:AbstractBBCodeAction.class.php
示例4: getOptions
public function getOptions()
{
$options = parent::getOptions();
$finalOptions = array_replace_recursive(self::$defaultOptions, $options->toArray());
$options->merge($finalOptions);
return $options;
}
开发者ID:Maksold,项目名称:platform,代码行数:7,代码来源:NavigateAction.php
示例5: execute
/**
* @see Action::execute()
*/
public function execute()
{
parent::execute();
WCF::getUser()->checkPermission('admin.user.canDeleteUser');
require_once WCF_DIR . 'lib/data/user/UserEditor.class.php';
require_once WCF_DIR . 'lib/data/user/group/Group.class.php';
if ($this->userID !== 0) {
$this->userIDs[] = $this->userID;
}
// active user can't delete himself
$activeUserID = WCF::getSession()->getUser()->userID;
$this->userIDs = array_diff($this->userIDs, array($activeUserID));
// check permission
if (count($this->userIDs) > 0) {
$sql = "SELECT\tDISTINCT groupID\n\t\t\t\tFROM\twcf" . WCF_N . "_user_to_groups\n\t\t\t\tWHERE\tuserID IN (" . implode(',', $this->userIDs) . ")";
$result = WCF::getDB()->sendQuery($sql);
while ($row = WCF::getDB()->fetchArray($result)) {
if (!Group::isAccessibleGroup($row['groupID'])) {
throw new PermissionDeniedException();
}
}
}
$deletedUsers = UserEditor::deleteUsers($this->userIDs);
$this->executed();
if (!empty($this->url) && (strpos($this->url, 'searchID=0') !== false || strpos($this->url, 'searchID=') === false)) {
HeaderUtil::redirect($this->url);
} else {
HeaderUtil::redirect('index.php?form=UserSearch&deletedUsers=' . $deletedUsers . '&packageID=' . PACKAGE_ID . SID_ARG_2ND_NOT_ENCODED);
}
exit;
}
开发者ID:CaribeSoy,项目名称:contest-wcf,代码行数:34,代码来源:UserDeleteAction.class.php
示例6: execute
/**
* @see Action::execute();
*/
public function execute()
{
parent::execute();
SpiderEditor::synchronize();
HeaderUtil::redirect('index.php?page=AdminToolsSpiderList&packageID=' . PACKAGE_ID . SID_ARG_2ND_NOT_ENCODED);
exit;
}
开发者ID:Maggan22,项目名称:wbb3addons,代码行数:10,代码来源:AdminToolsSpiderSynchronizeAction.class.php
示例7: execute
/**
* @see Action::execute()
*/
public function execute()
{
parent::execute();
// remove entries
DynamicPageEditor::remove($this->pageID);
$this->page->moduleManager->remove();
// clear cache
DynamicPageEditor::clearCache($this->pageID, $this->page->hostID);
// page menu entry
if ($this->page->menuItemID) {
require_once WCF_DIR . 'lib/data/page/menu/PageMenuItemEditor.class.php';
// create editor object
$menuItem = new PageMenuItemEditor($this->page->menuItemID);
// remove item
$menuItem->remove();
// clear cache
PageMenuItemEditor::clearCache();
}
// send redirect headers
if (!isset($_REQUEST['ajax'])) {
HeaderUtil::redirect('index.php?page=DynamicPageList&hostID=' . $this->page->hostID . '&packageID=' . PACKAGE_ID . SID_ARG_2ND_NOT_ENCODED);
}
// call event
$this->executed();
}
开发者ID:Evil-Co-Legacy,项目名称:Evil-Co.de-CMS,代码行数:28,代码来源:DynamicPageDeleteAction.class.php
示例8: execute
/**
* @see Action::execute()
*/
public function execute()
{
parent::execute();
// check permission
if (!WCF::getUser()->userID) {
require_once WCF_DIR . 'lib/system/exception/PermissionDeniedException.class.php';
throw new PermissionDeniedException();
}
$this->fleet = Fleet::getInstance($this->fleetID);
if ($this->fleet->ownerID != WCF::getUser()->userID) {
require_once WCF_DIR . 'lib/system/exception/PermissionDeniedException.class.php';
throw new PermissionDeniedException();
}
if (!$this->fleet->getCancelDuration()) {
require_once WCF_DIR . 'lib/system/exception/IllegalLinkException.class.php';
throw new IllegalLinkException();
}
if ($this->fleet->missionID == 11) {
$formation = $this->fleet->getNavalFormation();
}
$this->fleet->getEditor()->cancel();
if ($this->fleet->missionID == 11) {
FleetOvent::update($formation->getLeaderFleet());
}
$this->executed();
header('Location: index.php?page=FleetStartShips');
exit;
}
开发者ID:sonicmaster,项目名称:RPG,代码行数:31,代码来源:FleetCancelAction.class.php
示例9: readParameters
/**
* @see Action::readParameters()
*/
public function readParameters()
{
parent::readParameters();
if (isset($_REQUEST['smileyID'])) {
$this->smileyID = intval($_REQUEST['smileyID']);
}
}
开发者ID:joaocustodio,项目名称:EmuDevstore-1,代码行数:10,代码来源:SmileyDeleteAction.class.php
示例10: execute
/**
* @see Action::execute()
*/
public function execute()
{
parent::execute();
// check permission
if (!WCF::getUser()->userID) {
require_once WCF_DIR . 'lib/system/exception/PermissionDeniedException.class.php';
throw new PermissionDeniedException();
}
$this->alliance = Alliance::getByUserID($this->userID, true);
$this->user = new LWUser($this->userID);
if ($this->userID == WCF::getUser()->userID) {
require_once WCF_DIR . 'lib/system/exception/PermissionDeniedException.class.php';
throw new PermissionDeniedException();
}
if ($this->user->ally_id != $this->allianceID) {
require_once WCF_DIR . 'lib/system/exception/PermissionDeniedException.class.php';
throw new PermissionDeniedException();
}
if (!$this->alliance->getRank(true, 6)) {
require_once WCF_DIR . 'lib/system/exception/PermissionDeniedException.class.php';
throw new PermissionDeniedException();
}
$this->alliance->deleteUser($this->userID);
$this->executed();
header('Location: index.php?page=AllianceMembersList');
exit;
}
开发者ID:sonicmaster,项目名称:RPG,代码行数:30,代码来源:AllianceKickUserAction.class.php
示例11: execute
/**
* @see Action::execute()
*/
public function execute()
{
parent::execute();
// check permission
if (!WCF::getUser()->userID) {
require_once WCF_DIR . 'lib/system/exception/PermissionDeniedException.class.php';
throw new PermissionDeniedException();
}
$this->navalFormation = new NavalFormation($this->navalFormationID);
// check fleet
if ($this->navalFormation->getLeaderFleet()->ownerID != WCF::getUser()->userID) {
require_once WCF_DIR . 'lib/system/exception/PermissionDeniedException.class.php';
throw new PermissionDeniedException();
}
if ($this->navalFormation->usersLimitReached()) {
require_once WCF_DIR . 'lib/system/exception/PermissionDeniedException.class.php';
throw new PermissionDeniedException();
}
$user = new LWUser(null, null, $this->username);
if (!$user->userID) {
require_once WCF_DIR . 'lib/system/exception/IllegalLinkException.class.php';
throw new IllegalLinkException();
}
$this->userID = $user->userID;
$this->navalFormation->getEditor()->addUser($this->userID);
$this->executed();
header('Location: index.php?page=FleetStartShips');
exit;
}
开发者ID:sonicmaster,项目名称:RPG,代码行数:32,代码来源:FleetNavalFormationUserAddAction.class.php
示例12: execute
/**
* @see Action::execute()
*/
public function execute()
{
// call execute event
parent::execute();
if ($this->source->enableCheckout && $this->checkoutRepository) {
// load scm driver
$className = ucfirst(Source::validateSCM($this->source->scm));
// check out repository
require_once WCF_DIR . 'lib/system/scm/' . $className . '.class.php';
call_user_func(array($className, 'checkout'), $this->source->url, $this->source->sourceDirectory, array('username' => $this->source->username, 'password' => $this->source->password));
// set revision
$revision = $this->source->getHeadRevision();
$this->source->update(null, null, null, null, null, null, null, $revision);
}
// rebuild package data if requested
if ($this->rebuildPackageData) {
require_once PB_DIR . 'lib/system/package/PackageHelper.class.php';
PackageHelper::readPackages($this->source);
}
// call executed event
$this->executed();
// forward
HeaderUtil::redirect('index.php?page=SourceView&sourceID=' . $this->source->sourceID . SID_ARG_2ND_NOT_ENCODED);
exit;
}
开发者ID:ZerGabriel,项目名称:PackageBuilder,代码行数:28,代码来源:CheckoutAction.class.php
示例13: execute
/**
* @see Action::execute()
*/
public function execute()
{
parent::execute();
// check permission
WCF::getUser()->checkPermission('admin.template.canDeleteTemplate');
if (!count($this->templateID)) {
throw new IllegalLinkException();
}
// delete templates (files)
$templateIDs = '';
require_once WCF_DIR . 'lib/data/template/TemplateEditor.class.php';
$sql = "SELECT\t\ttemplate.*, pack.templatePackFolderName, package.packageDir\n\t\t\tFROM\t\twcf" . WCF_N . "_template template\n\t\t\tLEFT JOIN\twcf" . WCF_N . "_template_pack pack\n\t\t\tON\t\t(pack.templatePackID = template.templatePackID)\n\t\t\tLEFT JOIN\twcf" . WCF_N . "_package package\n\t\t\tON\t\t(package.packageID = template.packageID)\n\t\t\tWHERE\t\ttemplate.templateID IN (" . implode(',', $this->templateID) . ")\n\t\t\t\t\tAND template.templatePackID > 0";
$result = WCF::getDB()->sendQuery($sql);
while ($row = WCF::getDB()->fetchArray($result)) {
if (!empty($templateIDs)) {
$templateIDs .= ',';
}
$templateIDs .= $row['templateID'];
$template = new TemplateEditor(null, $row);
if ($template->templateID) {
$template->deleteFile();
}
}
// delete database entries
if (!empty($templateIDs)) {
TemplateEditor::deleteAll($templateIDs);
}
// reset cache
WCF::getCache()->clear(WCF_DIR . 'cache', 'cache.templates-*.php');
$this->executed();
// forward to list page
HeaderUtil::redirect('index.php?page=TemplateList&deletedTemplates=' . count($this->templateID) . '&templatePackID=' . $this->templatePackID . '&packageID=' . PACKAGE_ID . SID_ARG_2ND_NOT_ENCODED);
exit;
}
开发者ID:joaocustodio,项目名称:EmuDevstore-1,代码行数:37,代码来源:TemplateDeleteAction.class.php
示例14: execute
/**
* @see Action::execute();
*/
public function execute()
{
parent::execute();
// check permissions
WCF::getUser()->checkPermission('admin.system.canEditOption');
// header
@header('Content-type: text/xml');
// file name
@header('Content-disposition: attachment; filename="options.xml"');
// no cache headers
@header('Pragma: no-cache');
@header('Expires: 0');
// content
echo "<?xml version=\"1.0\" encoding=\"" . CHARSET . "\"?>\n<options>\n";
$options = Options::getOptions();
foreach ($options as $option) {
echo "\t<option>\n";
echo "\t\t<name><![CDATA[" . StringUtil::escapeCDATA($option['optionName']) . "]]></name>\n";
echo "\t\t<value><![CDATA[" . StringUtil::escapeCDATA($option['optionValue']) . "]]></value>\n";
echo "\t</option>\n";
}
echo '</options>';
$this->executed();
exit;
}
开发者ID:CaribeSoy,项目名称:contest-wcf,代码行数:28,代码来源:OptionExportAction.class.php
示例15: execute
/**
* @see Action::execute()
*/
public function execute()
{
parent::execute();
// avoid session update
WCF::getSession()->disableUpdate();
// execute cronjobs
new CronjobsExec();
}
开发者ID:joaocustodio,项目名称:EmuDevstore-1,代码行数:11,代码来源:CronjobsExecAction.class.php
示例16: asArray
/**
* Returns array containing actions in the collection
*
* Output example:
* array(
* {action::asArray},
* {action::asArray}
* )
*
* @param array $arrAttributes
* @return array
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function asArray(array $arrAttributes = array())
{
$out = parent::asArray();
foreach ($this->getActions() as $item) {
$out['actions'][] = $item->asArray();
}
return $out;
}
开发者ID:aiesh,项目名称:magento2,代码行数:21,代码来源:Collection.php
示例17: execute
/**
* @see Action::execute()
*/
public function execute()
{
parent::execute();
// check permission
WCF::getUser()->checkPermission(array('admin.smiley.canEditSmiley', 'admin.smiley.canDeleteSmiley'));
// unmark
WCF::getSession()->unregister('markedSmileys');
$this->executed();
}
开发者ID:joaocustodio,项目名称:EmuDevstore-1,代码行数:12,代码来源:SmileyUnmarkAllAction.class.php
示例18: getOptions
/**
* @return array
*/
public function getOptions()
{
$options = parent::getOptions();
$options['frontend_type'] = 'ajax';
if (empty($options['frontend_handle'])) {
$options['frontend_handle'] = 'ajax';
}
return $options;
}
开发者ID:Maksold,项目名称:platform,代码行数:12,代码来源:AjaxAction.php
示例19: execute
/**
* @see Action::execute()
*/
public function execute()
{
// call execute event
parent::execute();
// save status
UserSession::saveStatus($this->name, $this->status);
// call executed event
$this->executed();
}
开发者ID:CaribeSoy,项目名称:contest-wcf,代码行数:12,代码来源:StatusSaveAction.class.php
示例20: readParameters
/**
* @see Action::readParameters()
*/
public function readParameters()
{
parent::readParameters();
if (isset($_REQUEST['cronjobID'])) {
$this->cronjobID = intval($_REQUEST['cronjobID']);
}
$this->cronjob = new CronjobEditor($this->cronjobID);
if (!$this->cronjob->cronjobID) {
throw new IllegalLinkException();
}
}
开发者ID:joaocustodio,项目名称:EmuDevstore-1,代码行数:14,代码来源:AbstractCronjobsAction.class.php
注:本文中的AbstractAction类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论