‪TYPO3CMS  ‪main
TYPO3\CMS\Beuser\Domain\Model\FileMount Class Reference
Inheritance diagram for TYPO3\CMS\Beuser\Domain\Model\FileMount:
TYPO3\CMS\Extbase\DomainObject\AbstractEntity TYPO3\CMS\Extbase\DomainObject\AbstractDomainObject TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface TYPO3\CMS\Extbase\Persistence\ObjectMonitoringInterface

Public Member Functions

 getTitle ()
 
 setTitle (string $value)
 
 getDescription ()
 
 setDescription (string $description)
 
 setReadOnly (bool $readOnly)
 
 isReadOnly ()
 
 getIdentifier ()
 
 setIdentifier (string $identifier)
 
 isHidden ()
 
 setHidden (bool $hidden)
 
 getPath ()
 
 getStorage ()
 
- ‪Public Member Functions inherited from ‪TYPO3\CMS\Extbase\DomainObject\AbstractDomainObject
 setPid (int $pid)
 
 _setProperty (string $propertyName, mixed $value)
 
 _getProperty (string $propertyName)
 
 _memorizeCleanState (?string $propertyName=null)
 
 _memorizePropertyCleanState (string $propertyName)
 
 _getCleanProperty (string $propertyName)
 
 _isDirty (?string $propertyName=null)
 
 _isClone ()
 
 _setClone (bool $clone)
 
 __clone ()
 
non empty string __toString ()
 
- ‪Public Member Functions inherited from ‪TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface
 getUid ()
 
 getPid ()
 
 _isNew ()
 
 _hasProperty (string $propertyName)
 

Protected Attributes

string $title = ''
 
string $description = ''
 
string $identifier = ''
 
bool $hidden = false
 
bool $readOnly = false
 
- ‪Protected Attributes inherited from ‪TYPO3\CMS\Extbase\DomainObject\AbstractDomainObject
int $uid = null
 
int $_localizedUid = null
 
int $_languageUid = null
 
int $_versionedUid = null
 
int $pid = null
 

Additional Inherited Members

- ‪Public Attributes inherited from ‪TYPO3\CMS\Extbase\DomainObject\AbstractDomainObject
const PROPERTY_UID = 'uid'
 
const PROPERTY_PID = 'pid'
 
const PROPERTY_LOCALIZED_UID = '_localizedUid'
 
const PROPERTY_LANGUAGE_UID = '_languageUid'
 
const PROPERTY_VERSIONED_UID = '_versionedUid'
 
int< 1, function getUid():?int { if( $this->uid !==null) { return(int) $this-> uid
 
return null
 
int< 0, function getPid():int|null { if( $this->pid===null) { return null;} return(int) $this-> pid
 
array< non-empty-string, function _getProperties():array { $properties=get_object_vars( $this);foreach( $properties as $propertyName=> $propertyValue) { if(str_starts_with( $propertyName, '_')) { unset( $properties[ $propertyName]);} } return $properties;} public function _hasProperty(string $propertyName):bool { return property_exists( $this, $propertyName);} public function _isNew():bool { return $this-> uid === null
 
array< non-empty-string, function _getCleanProperties():array { return $this-> _cleanProperties
 
- ‪Protected Member Functions inherited from ‪TYPO3\CMS\Extbase\DomainObject\AbstractDomainObject
 isPropertyDirty (mixed $previousValue, mixed $currentValue)
 

Detailed Description

This class is a TYPO3 Backend implementation and is not considered part of the Public TYPO3 API.

Definition at line 29 of file FileMount.php.

Member Function Documentation

◆ getDescription()

TYPO3\CMS\Beuser\Domain\Model\FileMount::getDescription ( )

Getter for the description of the file mount.

Definition at line 77 of file FileMount.php.

References TYPO3\CMS\Beuser\Domain\Model\FileMount\$description.

◆ getIdentifier()

TYPO3\CMS\Beuser\Domain\Model\FileMount::getIdentifier ( )

◆ getPath()

TYPO3\CMS\Beuser\Domain\Model\FileMount::getPath ( )

returns the path segment of the filemount (without the storage id)

Definition at line 129 of file FileMount.php.

◆ getStorage()

TYPO3\CMS\Beuser\Domain\Model\FileMount::getStorage ( )
Todo:
‪This should be part of the ORM not the model class

Definition at line 137 of file FileMount.php.

◆ getTitle()

TYPO3\CMS\Beuser\Domain\Model\FileMount::getTitle ( )

Getter for the title of the file mount.

Definition at line 61 of file FileMount.php.

References TYPO3\CMS\Beuser\Domain\Model\FileMount\$title.

◆ isHidden()

TYPO3\CMS\Beuser\Domain\Model\FileMount::isHidden ( )

Definition at line 116 of file FileMount.php.

References TYPO3\CMS\Beuser\Domain\Model\FileMount\$hidden.

◆ isReadOnly()

TYPO3\CMS\Beuser\Domain\Model\FileMount::isReadOnly ( )

Getter for the readOnly property of the file mount.

Definition at line 101 of file FileMount.php.

References TYPO3\CMS\Beuser\Domain\Model\FileMount\$readOnly.

◆ setDescription()

TYPO3\CMS\Beuser\Domain\Model\FileMount::setDescription ( string  $description)

Setter for the description of the file mount.

Definition at line 85 of file FileMount.php.

References TYPO3\CMS\Beuser\Domain\Model\FileMount\$description, and TYPO3\CMS\Redirects\Message\description.

◆ setHidden()

TYPO3\CMS\Beuser\Domain\Model\FileMount::setHidden ( bool  $hidden)

Definition at line 121 of file FileMount.php.

References TYPO3\CMS\Beuser\Domain\Model\FileMount\$hidden.

◆ setIdentifier()

TYPO3\CMS\Beuser\Domain\Model\FileMount::setIdentifier ( string  $identifier)

◆ setReadOnly()

TYPO3\CMS\Beuser\Domain\Model\FileMount::setReadOnly ( bool  $readOnly)

Setter for the readOnly property of the file mount.

Definition at line 93 of file FileMount.php.

References TYPO3\CMS\Beuser\Domain\Model\FileMount\$readOnly.

◆ setTitle()

TYPO3\CMS\Beuser\Domain\Model\FileMount::setTitle ( string  $value)

Setter for the title of the file mount.

Definition at line 69 of file FileMount.php.

Member Data Documentation

◆ $description

string TYPO3\CMS\Beuser\Domain\Model\FileMount::$description = ''
protected

◆ $hidden

bool TYPO3\CMS\Beuser\Domain\Model\FileMount::$hidden = false
protected

◆ $identifier

string TYPO3\CMS\Beuser\Domain\Model\FileMount::$identifier = ''
protected

◆ $readOnly

bool TYPO3\CMS\Beuser\Domain\Model\FileMount::$readOnly = false
protected

Determines whether this file mount should be read only.

Definition at line 56 of file FileMount.php.

Referenced by TYPO3\CMS\Beuser\Domain\Model\FileMount\isReadOnly(), and TYPO3\CMS\Beuser\Domain\Model\FileMount\setReadOnly().

◆ $title

string TYPO3\CMS\Beuser\Domain\Model\FileMount::$title = ''
protected

Title of the file mount.

@Extbase\Validate("NotEmpty")

Definition at line 36 of file FileMount.php.

Referenced by TYPO3\CMS\Beuser\Domain\Model\FileMount\getTitle().