File manager - Edit - /home/palg2351/public_html/wp-content/plugins/jetformbuilder/includes/classes/resources/uploaded-collection.php
Back
<?php namespace Jet_Form_Builder\Classes\Resources; // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } class Uploaded_Collection implements Media_Block_Value, Uploaded_File_Path { /** @var Uploaded_File[] */ protected $uploads = array(); public function __construct( array $uploads = array() ) { $this->set_uploads( $uploads ); } /* * Realisation of * \Jet_Form_Builder\Classes\Resources\Media_Block_Value */ /** * @return string */ public function get_attachment_id(): string { $ids = array(); foreach ( $this->uploads as $upload ) { $ids[] = $upload->get_attachment_id(); } return implode( ',', $ids ); } public function get_attachment_ids(): array { $ids = array(); foreach ( $this->uploads as $upload ) { $ids[] = $upload->get_attachment_id(); } return $ids; } /** * @return string */ public function get_attachment_url(): string { $urls = array(); foreach ( $this->uploads as $upload ) { $urls[] = $upload->get_attachment_url(); } return implode( ',', $urls ); } /** * @return array */ public function get_attachment_both(): array { $both = array(); foreach ( $this->uploads as $upload ) { $both[] = $upload->get_attachment_both(); } return $both; } /* * Realisation of * \Jet_Form_Builder\Classes\Resources\Uploaded_File_Path */ /** * @return string */ public function get_attachment_file(): string { $files = array(); foreach ( $this->uploads as $upload ) { $files[] = $upload->get_attachment_file(); } return implode( ',', $files ); } /** * @param Uploaded_File[] $uploads */ public function set_uploads( array $uploads ) { foreach ( $uploads as $uploaded_file ) { if ( $uploaded_file instanceof Uploaded_File ) { $this->uploads[] = $uploaded_file; } } } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.14 |
proxy
|
phpinfo
|
Settings