Skip to content

Commit e1b5d5e

Browse files
authored
Merge pull request #43 from dotkernel/issue-40
Issue 40
2 parents d14820e + 2424013 commit e1b5d5e

22 files changed

+410
-142
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: "Continuous Integration"
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
tags:
8+
9+
jobs:
10+
ci:
11+
uses: laminas/workflow-continuous-integration/.github/workflows/[email protected]

.github/workflows/cs-tests.yml

-47
This file was deleted.

.github/workflows/docs-build.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: docs-build
2+
3+
on:
4+
release:
5+
types: [published]
6+
workflow_dispatch:
7+
8+
jobs:
9+
build-deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Build Docs
13+
uses: dotkernel/documentation-theme/github-actions/docs@main
14+
env:
15+
DEPLOY_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/static-analysis.yml

-47
This file was deleted.

.github/workflows/unit-tests.yml

-47
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ DotKernel component providing twig extensions and customizations.
1010
[![GitHub stars](https://img.shields.io/github/stars/dotkernel/dot-twigrenderer)](https://github.com/dotkernel/dot-twigrenderer/stargazers)
1111
[![GitHub license](https://img.shields.io/github/license/dotkernel/dot-twigrenderer)](https://github.com/dotkernel/dot-twigrenderer/blob/3.0/LICENSE.md)
1212

13-
[![Build Static](https://github.com/dotkernel/dot-twigrenderer/actions/workflows/static-analysis.yml/badge.svg?branch=3.0)](https://github.com/dotkernel/dot-twigrenderer/actions/workflows/static-analysis.yml)
13+
[![Build Static](https://github.com/dotkernel/dot-twigrenderer/actions/workflows/continuous-integration.yml/badge.svg?branch=3.0)](https://github.com/dotkernel/dot-twigrenderer/actions/workflows/continuous-integration.yml)
1414
[![codecov](https://codecov.io/gh/dotkernel/dot-twigrenderer/graph/badge.svg?token=M2WTS4DCKX)](https://codecov.io/gh/dotkernel/dot-twigrenderer)
1515

1616
[![SymfonyInsight](https://insight.symfony.com/projects/b9a7d75d-d00a-44a9-b1c0-aea8670681cc/big.svg)](https://insight.symfony.com/projects/b9a7d75d-d00a-44a9-b1c0-aea8670681cc)

SECURITY.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
6+
| Version | Supported | PHP Version |
7+
|---------|--------------------|------------------------------------------------------------------------------------------------------------------|
8+
| 3.x | :white_check_mark: | ![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-twigrenderer/3.4.3) |
9+
| <= 2.x | :x: | |
10+
11+
12+
## Reporting Potential Security Issues
13+
14+
If you have encountered a potential security vulnerability in this project,
15+
please report it to us at <[email protected]>. We will work with you to
16+
verify the vulnerability and patch it.
17+
18+
When reporting issues, please provide the following information:
19+
20+
- Component(s) affected
21+
- A description indicating how to reproduce the issue
22+
- A summary of the security vulnerability and impact
23+
24+
We request that you contact us via the email address above and give the
25+
project contributors a chance to resolve the vulnerability and issue a new
26+
release prior to any public exposure; this helps protect the project's
27+
users, and provides them with a chance to upgrade and/or update in order to
28+
protect their applications.
29+
30+
31+
## Policy
32+
33+
If we verify a reported security vulnerability, our policy is:
34+
35+
- We will patch the current release branch, as well as the immediate prior minor
36+
release branch.
37+
38+
- After patching the release branches, we will immediately issue new security
39+
fix releases for each patched release branch.
40+

docs/book/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../README.md

docs/book/v3/configuration.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Configuration
2+
3+
Register `dot-twigrenderer`'s ConfigProvider in your application's configurations by adding the following line to `config/config.php`:
4+
5+
\Dot\Twig\ConfigProvider::class,

docs/book/v3/examples.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Examples
2+
3+
* [Authentication Extension](examples/example-authentication-ext.md)
4+
* [Authorization Extension](examples/example-authorization-ext.md)
5+
* [Date Extension](examples/example-date-ext.md)
6+
* [Flash Messenger Extension](examples/example-flash-messenger-ext.md)
7+
* [Form Elements Extension](examples/example-form-elements-ext.md)
8+
* [Navigation Extension](examples/example-navigation-ext.md)
9+
* [Translation Extension](examples/example-translation-ext.md)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Using the authentication extension
2+
3+
Dot-twigrenderer extends Twig with functions that use functionality from [laminas/laminas-authentication](https://github.com/laminas/laminas-authentication) to check if the user is authenticated and to get the authenticated identity object respectively.
4+
5+
```php
6+
public function hasIdentity(): bool;
7+
8+
public function getIdentity(): ?IdentityInterface;
9+
```
10+
11+
## Example usage
12+
13+
```twig
14+
{% if hasIdentity() %}
15+
16+
Welcome, {% getIdentity().username %}!
17+
18+
{% endif %}
19+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Using the authorization extension
2+
3+
Dot-twigrenderer extends Twig with a function that uses functionality from [dotkernel/dot-authorization](https://github.com/dotkernel/dot-authorization) to check if a logged user is authorized to access a particular resource.
4+
5+
```php
6+
public function isGranted(string $permission = ''): bool;
7+
```
8+
9+
The function returns a boolean value of true if the logged user has access to the requested permission.
10+
11+
## Example usage
12+
13+
Expanding on the example from the authentication extension:
14+
15+
```twig
16+
{% if hasIdentity() %}
17+
18+
Welcome, {% getIdentity().username %}!
19+
20+
{% if isGranted({{ role }}) %}
21+
{# your code #}
22+
{% endif %}
23+
24+
{% endif %}
25+
```
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Using the date extension
2+
3+
Dot-twigrenderer extends Twig with a function that calculates the difference between two dates. The function converts dates to a time ago string like Facebook and Twitter has. If `null` is passed as the second or third parameters, the current time will be used.
4+
5+
```php
6+
public function diff(
7+
Environment $env,
8+
string|DateTimeInterface|null $date,
9+
string|DateTimeZone|null $now = null
10+
): string;
11+
```
12+
13+
## Example usage
14+
15+
Pass Twig's Environment to the template
16+
17+
```php
18+
$loader = new \Twig\Loader\FilesystemLoader(__DIR__ . '/../../templates/page');
19+
$twigEnv = new \Twig\Environment($loader);
20+
21+
$this->template->render('page::templateName', [
22+
"env" => $twigEnv,
23+
#other parameters
24+
]);
25+
```
26+
27+
This enables the use of the `diff` function:
28+
29+
```twig
30+
{{ diff(env, '2024-02-20', '2024-02-18') }}
31+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Using the flash messenger extension
2+
3+
Dot-twigrenderer extends Twig with functions that use functionality from [dotkernel/dot-flashMessenger](https://github.com/dotkernel/dot-flashMessenger) to list messages or partial messages.
4+
5+
```php
6+
public function renderMessages(
7+
?string $type = null,
8+
string $channel = FlashMessengerInterface::DEFAULT_CHANNEL
9+
): string; // empty response
10+
11+
public function function renderMessagesPartial(
12+
string $partial,
13+
array $params = [],
14+
?string $type = null,
15+
string $channel = FlashMessengerInterface::DEFAULT_CHANNEL
16+
): string;
17+
```
18+
19+
`renderMessagesPartial` returns messages previously passed to `dot-flashMessenger`. The last 3 parameters can be omitted to list all messages sent to FlashMessenger.
20+
21+
* `$partial` is the template file name
22+
* `$params` is an optional array of items (key-value) passed to the template file
23+
* `$type` is an optional item that identifies a subkey of FlashMessenger's channel array
24+
* `$channel` is an optional item that identifies FlashMessenger's channel
25+
26+
## Example usage
27+
28+
```twig
29+
{{ renderMessagesPartial('page:partial') }}
30+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Using the form elements extension
2+
3+
Dot-twigrenderer extends Twig with a function based on `TwigTest` that checks if each `Form` element is an instance of its class.
4+
5+
```php
6+
public function getTests(): array;
7+
```
8+
9+
## Example usage
10+
11+
```twig
12+
{% if false not in getTests() %}
13+
14+
{# your code #}
15+
16+
{% endif %}
17+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Using the navigation extension
2+
3+
Dot-twigrenderer extends Twig with functions that use functionality from [dotkernel/dot-navigation](https://github.com/dotkernel/dot-navigation) to easily parse a menu and to display escaped HTML inside a template.
4+
5+
```php
6+
public function htmlAttributes(Page $page): string;
7+
8+
public function renderMenu(NavigationContainer|string $container): string; //incomplete?
9+
10+
public function renderMenuPartial(
11+
NavigationContainer|string $container,
12+
string $partial,
13+
array $params = []
14+
): string;
15+
```
16+
17+
* `$partial` is the template file name
18+
* `$params` is an optional array of items (key-value) passed to the template file

0 commit comments

Comments
 (0)