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


PHP BackendUserAuthentication::recordEditAccessInternals方法代码示例

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


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

示例1: addDataSetsUserPermissionsOnPageForNewContentRecord

 /**
  * @test
  */
 public function addDataSetsUserPermissionsOnPageForNewContentRecord()
 {
     $input = ['tableName' => 'tt_content', 'command' => 'new', 'vanillaUid' => 123, 'parentPageRow' => ['uid' => 123, 'pid' => 321]];
     $this->beUserProphecy->isAdmin()->willReturn(false);
     $this->beUserProphecy->check('tables_modify', $input['tableName'])->willReturn(true);
     $this->beUserProphecy->calcPerms($input['parentPageRow'])->willReturn(Permission::CONTENT_EDIT);
     $this->beUserProphecy->recordEditAccessInternals($input['tableName'], Argument::cetera())->willReturn(true);
     $result = $this->subject->addData($input);
     $this->assertSame(Permission::CONTENT_EDIT, $result['userPermissionOnPage']);
 }
开发者ID:graurus,项目名称:testgit_t37,代码行数:13,代码来源:DatabaseUserPermissionCheckTest.php

示例2: addDataSetsPermissionsToAllIfRootLevelRestrictionForTableIsIgnoredForNewContentRecord

 /**
  * @test
  */
 public function addDataSetsPermissionsToAllIfRootLevelRestrictionForTableIsIgnoredForNewContentRecord()
 {
     $input = ['tableName' => 'pages', 'command' => 'new', 'vanillaUid' => 123, 'parentPageRow' => null];
     $this->beUserProphecy->isAdmin()->willReturn(false);
     $this->beUserProphecy->check('tables_modify', $input['tableName'])->willReturn(true);
     $this->beUserProphecy->recordEditAccessInternals($input['tableName'], Argument::cetera())->willReturn(true);
     $GLOBALS['TCA'][$input['tableName']]['ctrl']['security']['ignoreRootLevelRestriction'] = true;
     $result = $this->subject->addData($input);
     $this->assertSame(Permission::ALL, $result['userPermissionOnPage']);
 }
开发者ID:dachcom-digital,项目名称:TYPO3.CMS,代码行数:13,代码来源:DatabaseUserPermissionCheckTest.php

示例3: canDeletePage

 /**
  * Used to evaluate if a page can be deleted
  *
  * @param int $uid Page id
  * @return array|string If array: List of page uids to traverse and delete (means OK), if string: error message.
  */
 public function canDeletePage($uid)
 {
     // If we may at all delete this page
     if (!$this->doesRecordExist('pages', $uid, 'delete')) {
         return 'Attempt to delete page without permissions';
     }
     if ($this->deleteTree) {
         // Returns the branch
         $brExist = $this->doesBranchExist('', $uid, $this->pMap['delete'], 1);
         // Checks if we had permissions
         if ($brExist == -1) {
             return 'Attempt to delete pages in branch without permissions';
         }
         if (!$this->noRecordsFromUnallowedTables($brExist . $uid)) {
             return 'Attempt to delete records from disallowed tables';
         }
         $pagesInBranch = GeneralUtility::trimExplode(',', $brExist . $uid, true);
         foreach ($pagesInBranch as $pageInBranch) {
             if (!$this->BE_USER->recordEditAccessInternals('pages', $pageInBranch, false, false, true)) {
                 return 'Attempt to delete page which has prohibited localizations.';
             }
         }
         return $pagesInBranch;
     } else {
         // returns the branch
         $brExist = $this->doesBranchExist('', $uid, $this->pMap['delete'], 1);
         // Checks if branch exists
         if ($brExist != '') {
             return 'Attempt to delete page which has subpages';
         }
         if (!$this->noRecordsFromUnallowedTables($uid)) {
             return 'Attempt to delete records from disallowed tables';
         }
         if ($this->BE_USER->recordEditAccessInternals('pages', $uid, false, false, true)) {
             return array($uid);
         } else {
             return 'Attempt to delete page which has prohibited localizations.';
         }
     }
 }
开发者ID:rickymathew,项目名称:TYPO3.CMS,代码行数:46,代码来源:DataHandler.php


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