getMaxUploadFileSize() public method

Get the maximum file size that is allowed for file uploads
public getMaxUploadFileSize ( ) : integer
return integer The maximum file size in bytes
Example #1
0
 /**
  * Get the maximum file size that is allowed for file uploads
  *
  * @return integer
  *
  * @deprecated Deprecated since Contao 4.0, to be removed in Contao 5.0.
  *             Use $this->objModel->getMaxUploadFileSize() instead.
  */
 protected function getMaxFileSize()
 {
     @trigger_error('Using Form::getMaxFileSize() has been deprecated and will no longer work in Contao 5.0. Use $this->objModel->getMaxUploadFileSize() instead.', E_USER_DEPRECATED);
     return $this->objModel->getMaxUploadFileSize();
 }