File manager - Edit - /home/palg2351/public_html/wp-content/plugins/jetformbuilder/includes/classes/resources/file-collection.php
Back
<?php namespace Jet_Form_Builder\Classes\Resources; use Jet_Form_Builder\Classes\Arrayable\Collection; // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } class File_Collection extends Collection implements Media_Block_Value, Has_Error_File { public function push( array $file ): bool { try { $file = new File( $file ); } catch ( Sanitize_File_Exception $exception ) { return false; } $this->add( $file ); return true; } public function push_files( array $files ): File_Collection { foreach ( $files as $file ) { $this->push( $file ); } return $this; } public function has_error(): bool { /** @var File $file */ foreach ( $this as $file ) { if ( $file->has_error() ) { return true; } } return false; } /* * Realisation of * \Jet_Form_Builder\Classes\Resources\Media_Block_Value */ /** * @return string */ public function get_attachment_id(): string { return ''; } /** * @return string */ public function get_attachment_url(): string { $urls = array(); foreach ( $this as $file ) { $urls[] = $file->get_attachment_url(); } return implode( ',', $urls ); } /** * @return array */ public function get_attachment_both(): array { return array(); } /** * @return array */ public function get_attachment_ids(): array { return array(); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.22 |
proxy
|
phpinfo
|
Settings