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


PHP ResourceStorage::getFolder方法代碼示例

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


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

示例1: createFolderCreatesNestedStructureEvenIfPartsAlreadyExist

 /**
  * @test
  */
 public function createFolderCreatesNestedStructureEvenIfPartsAlreadyExist()
 {
     $this->addToMount(array('existingFolder' => array()));
     $this->initializeVfs();
     $mockedDriver = $this->createDriverMock(array('basePath' => $this->getMountRootUrl()), NULL, NULL);
     $this->prepareFixture(array(), TRUE, $mockedDriver);
     $rootFolder = $this->fixture->getFolder('/');
     $newFolder = $this->fixture->createFolder('existingFolder/someFolder', $rootFolder);
     $this->assertEquals('someFolder', $newFolder->getName());
     $this->assertFileExists($this->getUrlInMount('existingFolder/someFolder'));
 }
開發者ID:nicksergio,項目名稱:TYPO3v4-Core,代碼行數:14,代碼來源:ResourceStorageTest.php

示例2: createFolderCreatesNestedStructureEvenIfPartsAlreadyExist

 /**
  * @test
  * @TODO: Rewrite or move to functional suite
  */
 public function createFolderCreatesNestedStructureEvenIfPartsAlreadyExist()
 {
     $this->markTestSkipped('This test does way to much and is mocked incomplete. Skipped for now.');
     $this->addToMount(array('existingFolder' => array()));
     $this->initializeVfs();
     $mockedDriver = $this->createDriverMock(array('basePath' => $this->getMountRootUrl()), null, null);
     $this->prepareSubject(array(), true, $mockedDriver);
     $rootFolder = $this->subject->getFolder('/');
     $newFolder = $this->subject->createFolder('existingFolder/someFolder', $rootFolder);
     $this->assertEquals('someFolder', $newFolder->getName());
     $this->assertFileExists($this->getUrlInMount('existingFolder/someFolder'));
 }
開發者ID:rickymathew,項目名稱:TYPO3.CMS,代碼行數:16,代碼來源:ResourceStorageTest.php

示例3: resolveStorageInformation

 /**
  * Set the storage and folder to use for the Plugins
  *
  * @throws \Exception
  * @throws \TYPO3\CMS\Core\Resource\Exception\InsufficientFolderAccessPermissionsException
  * @return void
  */
 protected function resolveStorageInformation()
 {
     $selectedFolderParts = explode(':', $this->settings['default']['folder']);
     $this->selectedStorage = $this->storageRepository->findByUid($selectedFolderParts[1]);
     $this->selectedFolder = $this->selectedStorage->getFolder($selectedFolderParts[2]);
 }
開發者ID:vertexvaar,項目名稱:fal_gallery,代碼行數:13,代碼來源:GalleryController.php

示例4: getDefaultFolderInStorage

 /**
  * Return a new target folder when moving file from one storage to another.
  *
  * @param ResourceStorage $storage
  * @param File $file
  * @return \TYPO3\CMS\Core\Resource\Folder
  */
 public function getDefaultFolderInStorage(ResourceStorage $storage, File $file)
 {
     // default is the root level
     $folder = $storage->getRootLevelFolder();
     // Retrieve storage record and a possible configured mount point.
     $storageRecord = $storage->getStorageRecord();
     $mountPointIdentifier = $storageRecord['mount_point_file_type_' . $file->getType()];
     if ($mountPointIdentifier > 0) {
         // We don't have a Mount Point repository in FAL, so query the database directly.
         $record = $this->getDatabaseConnection()->exec_SELECTgetSingleRow('path', 'sys_filemounts', 'deleted = 0 AND uid = ' . $mountPointIdentifier);
         if (!empty($record['path'])) {
             $folder = $storage->getFolder($record['path']);
         }
     }
     return $folder;
 }
開發者ID:visol,項目名稱:media,代碼行數:23,代碼來源:MediaModule.php


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