Download the PHP package donia-shaker/media-library without Composer
On this page you can find all versions of the php package donia-shaker/media-library. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package media-library
Media Library
This package provides a set of functions for handling media files, including images, audio, video, and PDF files.
- Media Library
- Features
- Installation
- Usage
- Initialization
- Save Image
- Create Temporary Image
- Convert Temporary Image
- Delete Temporary Image
- Save Audio File
- Save Video File
- Save Document File
- Media Object
- Rules
- Square Image
- Troubleshooting and Collaboration
Features
- Versatile Storage Options: Seamlessly store and manage your files in both public and private storage environments.
- Image Conversion Made Easy: Effortlessly convert and store images in multiple formats to suit all your needs.
- Automatic Thumbnail Generation: Instantly create and manage image thumbnails upon upload, saving you time and effort.
- Universal File Storage: Store and organize any file type, including documents, videos, and audio files.
- Soft Delete Support: Safeguard your data with soft delete functionality, allowing you to restore accidentally deleted files easily.
- URL Generation: Instantly generate shareable URLs for your files, making it simple to share and access your stored content.
- Image Upload Rules: Ensure optimal performance and quality with customizable image upload rules, including dimensions, size, and format restrictions.
Installation
To install the DoniaShaker\MediaLibrary
package, follow these steps:
-
Add the package to your Laravel project using Composer:
-
Publish the Database migrations and config to your project:
-
If you wish to use a default format other than the default webp format, edit the following line in
config/media-library.php
-
Add
ENV
variables required by the package config - Run the package's migrations to create the necessary database tables:
Usage
Initialization
-
use the package:
-
Call the Constructor
- in the following examples, the
$format
field can be null, thus using thedefault_image_format
value defined from the config.
Save Image
This function saves an image file to the media library, generates a thumbnail, and associates it with the current model. Usage:
Create Temporary Image
This function creates a temporary image file in the media library.
Usage:
Convert Temporary Image
This function converts a temporary image file to a normal image file in the media library, deletes the temporary file and record, and associates the new image with the current model.
Usage:
Delete Temporary Image
This function deletes a temporary image file and record from the media library.
Usage:
Save Audio File
This function saves an audio file to the media library and associates it with the current model.
Usage:
Save Video File
This function saves a video file to the media library and associates it with the current model. Usage:
Save Document File
This function saves a document file to the media library and associates it with the current model. Usage:
Media Object
Explanation of the media object properties:
id
: The unique identifier of the media object.model
: The model associated with the media object (in this case, "slider").format
: The file format of the media object.model_id
: The ID of the associated model (in this case, 2).order
: The order of the media object (in casemodel
has manymedia
).file_name
: The unique file name of the media object.has_thumb
: Indicates whether the media object has a thumbnail (1 for true, 0 for false).is_active
: Indicates whether the media object is active (1 for true, 0 for false).is_temp
: Indicates whether the media object is temporary (1 for true, 0 for false).deleted_at
: The timestamp indicating when the media object was deleted (null if not deleted).created_at
: The timestamp indicating when the media object was created.updated_at
: The timestamp indicating when the media object was last updated.url
: The URL to access the original image file including temp.thumb_url
: The URL to access the thumbnail image file (if available).
The media object represents a media file stored in the media library. It contains various properties providing information about the file, such as its associated model, file format, URLs for accessing the image and thumbnail, and timestamps for creation and updates.
Rules
Square Image
This function saves a document file to the media library and associates it with the current model. It accepts the $file
parameter, which represents the uploaded document file.
Usage:
Troubleshooting and Collaboration
If you encounter any issues or have any suggestions, please feel free to open an issue on GitHub.
All versions of media-library with dependencies
intervention/image Version ^3.6
ivoglent/ffmpeg-composer-bin Version ^1.3