Download the PHP package m-adamski/symfony-helpers-bundle without Composer
On this page you can find all versions of the php package m-adamski/symfony-helpers-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download m-adamski/symfony-helpers-bundle
More information about m-adamski/symfony-helpers-bundle
Files in m-adamski/symfony-helpers-bundle
Package symfony-helpers-bundle
Short Description Helpers Bundle for Symfony
License MIT
Informations about the package symfony-helpers-bundle
Helpers Bundle for Symfony 4
This bundle is deprecated! Each helper was moved into a separate package:
A collection of tools to improve the implementation of frequently-repeated functionalities:
- Breadcrumbs Helper
- Directory Helper
- Mailer Helper
- Notification Helper
- Pagination Helper
- PDF Helper
Breadcrumbs Helper
The Breadcrumbs tool simplifies the generation and display process of breadcrumbs.
How to use it?
In the controller function, generate the breadcrumbs structure:
To display breadcrumbs in Twig template file use breadcrumbs()
function:
Functions
- addItem(string $text, string $url = "", string $translationDomain = "breadcrumbs", array $translationParameters = [], bool $translate = true)
- addRouteItem(string $text, string $route, array $routeParameters = [], string $translationDomain = "breadcrumbs", array $translationParameters = [], bool $translate = true)
- addNamespaceItem(string $namespace, string $text, string $url = "", string $translationDomain = "breadcrumbs", array $translationParameters = [], bool $translate = true)
- prependItem(string $text, string $url = "", string $translationDomain = "breadcrumbs", array $translationParameters = [], bool $translate = true)
- prependRouteItem(string $text, string $route, array $routeParameters = [], string $translationDomain = "breadcrumbs", array $translationParameters = [], bool $translate = true)
- prependNamespaceItem(string $namespace, string $text, string $url = "", string $translationDomain = "breadcrumbs", array $translationParameters = [], bool $translate = true)
- getNamespaceBreadcrumbs(string $namespace = self::DEFAULT_NAMESPACE)
- clear(string $namespace = "")
Directory Helper
The Directory tool was created for faster directory management. With its help, you can quickly create a list of all files in a folder, create a new folder or generate a file path.
Mailer Helper
As the name says, the Mailer Helper is used to send email messages. Helper contain two functions:
- buildMessage(?string $subject = null, ?string $body = null, ?string $contentType = null, ?string $charset = null)
- sendMessage(MailerMessage $mailerMessage, ?array &$failedRecipients = null)
The first function generates an instance of the MailerMessage class, which extends the basic class Swift_Message. The other one tries to send the generated message.
How to use it?
In the controller function just call sendMessage
function with parameters:
Notification Helper
The tool is intended to help display information for the user.
How to use it?
For example: An error occurred while creating a new blog entry and we would like to inform the user about it:
As in the case of Breadcrumbs Helper, we must also add a call to the corresponding function in the template:
Functions
- addNotification(string $type, string $text)
- redirectNotification(string $url, string $type, string $text)
- routeRedirectNotification(string $route, string $type, string $text, array $routeParams = [])
- getNotifications()
- clear()
Pagination Helper
To be able to use Pagination Helper, several changes are required in both the controller and the entity repository. Sample controller function:
As you can see the responseData
function requires three parameters. One of them is the repository of the entity we are paging. Now we need to make changes in the entity repository - repository class have to extends Adamski\Symfony\HelpersBundle\Model\PaginableRepository
and implement getPaginated
function:
Now just add function to render the pagination component in template.
PDF Helper
PDF Helper offers only one function - initDocument
. This function create PDFDocument object which provides some useful functions needed to create a PDF document. Below is an example of using PDF Helper:
In the example shown, the template file is rendered, and then the HTML code is inserted as the content of the new PDF document. In addition, the parameters of the PDF file are set.
License
MIT
All versions of symfony-helpers-bundle with dependencies
cakephp/chronos Version ^1.1
symfony/asset Version ^4.0
symfony/filesystem Version ^4.0
symfony/finder Version ^4.0
symfony/framework-bundle Version ^4.0
symfony/orm-pack Version ^1.0
symfony/swiftmailer-bundle Version ^3.1
symfony/translation Version ^4.0
symfony/twig-bundle Version ^4.0
tecnickcom/tcpdf Version ^6.2