ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-17 00:07:58
Editing: Attachment.php
Cancel
Save Changes
<?php /** * Swift Mailer Message Attachment * Please read the LICENSE file * @copyright Chris Corbyn <chris@w3style.co.uk> * @author Chris Corbyn <chris@w3style.co.uk> * @package Swift_Message * @license GNU Lesser General Public License */ require_once dirname(__FILE__) . "/../ClassLoader.php"; Swift_ClassLoader::load("Swift_Message_Mime"); Swift_ClassLoader::load("Swift_Errors"); /** * Attachment component for Swift Mailer * @package Swift_Message * @author Chris Corbyn <chris@w3style.co.uk> */ class Swift_Message_Attachment extends Swift_Message_Mime { /** * Constructor * @param mixed The data to use in the body * @param string Mime type * @param string The encoding format used * @param string The charset used */ function Swift_Message_Attachment($data=null, $name=null, $type="application/octet-stream", $encoding="base64", $disposition="attachment") { $this->Swift_Message_Mime(); $this->setContentType($type); $this->setEncoding($encoding); $this->setDescription($name); $this->setDisposition($disposition); $this->setFileName($name); if ($data !== null) $this->setData($data, ($name === null)); } /** * Get a unique filename (just a sequence) * @param string the prefix for the filename * @return string */ function generateFileName($prefix="file") { static $id = 0; return $prefix . ($id++); } /** * Get the level in the MIME hierarchy at which this section should appear. * @return string */ function getLevel() { return SWIFT_MIME_LEVEL_MIXED; } /** * Overrides setData() in MIME so that a filename can be set * @param mixed The data to set for the body * @param boolean If the stream is a file, should it's filename be used? * @throws Swift_FileException If the stream cannot be read */ function setData($data, $read_filename=true) { parent::setData($data); if ($read_filename && (is_a($data, "Swift_file"))) { $this->setFileName($data->getFileName()); } } /** * Set the name (and description) used to identify the file * This method overrides any value previously set with setDescription() * @param string The filename including it's extension if any * @throws Swift_Message_MimeException If some required headers have been deliberately removed */ function setFileName($name) { $this->headers->setAttribute("Content-Type", "name", $name); $this->setDescription($name); if ($this->headers->has("Content-Disposition")) { $this->headers->setAttribute("Content-Disposition", "filename", $name); } } /** * Get the filename of this attachment * @return string * @throws Swift_Message_MimeException If some vital headers have been removed */ function getFileName() { if ($this->headers->hasAttribute("Content-Type", "name")) { return $this->headers->getAttribute("Content-Type", "name"); } else return null; } /** * Set the Content-Description header * @param string The description in the header (filename usually!) */ function setDescription($desc) { $this->headers->set("Content-Description", $desc); } /** * Return the description in the headers * @return string */ function getDescription() { if ($this->headers->has("Content-Description")) { return $this->headers->get("Content-Description"); } else return null; } /** * Set the disposition of the attachment (usually inline or attachment) * @param string The value to use in the Content-Disposition field */ function setDisposition($disposition) { $this->headers->set("Content-Disposition", $disposition); } /** * Get the disposition used in the attachment (usually inline or attachment) * @return string */ function getDisposition() { if ($this->headers->has("Content-Disposition")) { return $this->headers->get("Content-Disposition"); } else return null; } /** * Execute needed logic prior to building */ function preBuild() { if ($this->getFileName() === null) { if (is_a($this->getData(), "Swift_File")) { $data =& $this->getData(); $this->setFileName($data->getFileName()); } else { $this->setFileName(Swift_Message_Attachment::generateFileName("file.att.")); } } } }
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete