![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/give/src/Framework/FieldsAPI/ |
<?php namespace Give\Framework\FieldsAPI; use function get_allowed_mime_types; use function wp_max_upload_size; /** * A file upload field. * * @since 2.12.0 * @since 2.23.1 Moved default rule values inline since inherited constructor is final. */ class File extends Field { use Concerns\AllowMultiple; use Concerns\HasEmailTag; use Concerns\HasHelpText; use Concerns\HasLabel; use Concerns\ShowInReceipt; use Concerns\StoreAsMeta; use Concerns\AllowMultiple; const TYPE = 'file'; /** * 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') || wp_max_upload_size(); } /** * 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') || get_allowed_mime_types(); } }