/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/Framework/FieldsAPI
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/Framework/FieldsAPI/File.php (1764B)
validationRules->rule('maxSize', wp_max_upload_size()); // in bytes
$this->validationRules->rule('allowedTypes', get_allowed_mime_types());
}
/**
* Set the maximum file size.
*
* @param int $maxSize
*
* @return $this
*/
public function maxSize($maxSize)
{
$this->validationRules->rule('maxSize', $maxSize);
return $this;
}
/**
* Access the maximum file size.
*
* @return int
*/
public function getMaxSize()
{
return $this->validationRules->getRule('maxSize');
}
/**
* Set the allowed file types.
*
* @param string[] $allowedTypes
*
* @return $this
*/
public function allowedTypes($allowedTypes)
{
$this->validationRules->rule('allowedTypes', $allowedTypes);
return $this;
}
/**
* Access the allowed file types.
*
* @return string[]
*/
public function getAllowedTypes()
{
return $this->validationRules->getRule('allowedTypes');
}
}