1. Go to this page and download the library: Download pollen-solutions/partial library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pollen-solutions / partial example snippets
use Pollen\Partial\PartialManager;
$partial = new PartialManager();
$partial->register('hello', function () {
return 'Hello World !';
});
echo $partial->get('hello');
use Pollen\Partial\PartialManager;
$partial = new PartialManager();
$partial->register('hello');
echo $partial->get('hello', ['content' => 'Hello World !']);
use Pollen\Partial\PartialDriver;
use Pollen\Partial\PartialManager;
class HelloPartial extends PartialDriver
{
public function render() : string{
return 'Hello World !';
}
}
$partial = new PartialManager();
$partial->register('hello', HelloPartial::class);
echo $partial->get('hello');
use Pollen\Container\Container;
use Pollen\Partial\PartialDriver;
use Pollen\Partial\PartialManager;
$container = new Container();
$partial = new PartialManager();
$partial->setContainer($container);
class HelloPartial extends PartialDriver
{
public function render() : string{
return 'Hello World !';
}
}
$container->add('helloPartialService', HelloPartial::class);
$partial->register('hello', 'helloPartialService');
echo $partial->get('hello');
use Pollen\Partial\PartialDriverInterface;
use Pollen\Partial\PartialManager;
$partial = new PartialManager();
$partial->register('hello', function (PartialDriverInterface $driver) {
return 'Hello '. $driver->get('name') .' !';
});
echo $partial->get('hello', ['name' => 'John Doe']);
use Pollen\Partial\PartialDriverInterface;
use Pollen\Partial\PartialManager;
$partial = new PartialManager();
$partial->register('hello', function (PartialDriverInterface $driver) {
return 'Hello '. $driver->get('name') .' !<br>';
});
echo $partial->get('hello', 'HelloJohn', ['name' => 'John Doe']);
echo $partial->get('hello', 'HelloJane', ['name' => 'Jane Doe']);
echo $partial->get('hello', 'HelloJohn');
use Pollen\Partial\PartialDriverInterface;
use Pollen\Partial\PartialManager;
$partial = new PartialManager();
$tag = $partial->get('tag', [
/**
* Common driver parameters.
* --------------------------------------------------------------------------
*/
/**
* Main container HTML tag attributes.
* @var array $attrs
*/
'attrs' => [
'class' => '%s MyAppendedClass'
],
/**
* Content displayed after the main container.
* @var string|callable $after
*/
'after' => 'content show after',
/**
* Content displayed before the main container.
* @var string|callable $before
*/
'before' => function (PartialDriverInterface $driver) {
return 'content show before'
},
/**
* List of parameters of the template view|View instance.
* {@internal See below in the View API usage section.}
* @var array|ViewInterface $view
*/
'view' => [],
/**
* Tag partial driver parameters
* --------------------------------------------------------------------------
*/
/**
* HTML tag.
* @var string $tag div|span|a|... default div.
*/
'tag' => 'div',
/**
* HTML tag content.
* @var string|callable $content
*/
'content' => '',
/**
* Enable tag as singleton.
* {@internal Auto-resolve if null based on list of known singleton tags.}
* @var bool|null $singleton
*/
'singleton' => null,
]);
echo $tag;
use Pollen\Field\FieldManager;
$field = new FieldManager();
$field->register('hello', function () {
return 'Hello World';
});
if ($hello = $partial->get('hello')) {
// Gets alias identifier.
printf('alias: %s <br/>', $hello->getAlias());
// Gets the base prefix of HTML class.
printf('base HTML class: %s <br/>', $hello->getBaseClass());
// Gets the unique identifier.
printf('identifier: %s <br/>', $hello->getId());
// Gets the index in related partial manager.
printf('index: %s <br/>', $hello->getIndex());
}
use Pollen\Partial\PartialDriver;
use Pollen\Partial\PartialManager;
$partial = new PartialManager();
$partial->register('hello', new class extends PartialDriver{});
echo $partial->get('hello', ['view' => [
/**
* View directory absolute path (y default if its null.
* @var string|null
*/
'template_name' => 'hello'
]]);
use Pollen\View\ViewManager;
use Pollen\Partial\PartialDriver;
use Pollen\Partial\PartialManager;
$partial = new PartialManager();
$partial->register('hello', new class extends PartialDriver{});
$viewEngine = (new ViewManager())->createView('twig')->setDirectory('/var/www/html/views/partial/hello/');
echo $partial->get('hello', ['view' => $viewEngine]);
use Pollen\Http\Response;
use Pollen\Http\ResponseInterface;
use Pollen\Partial\PartialDriver;
use Pollen\Partial\PartialManager;
$partial = new PartialManager();
$partial->register('hello', new class extends PartialDriver {
public function responseController(...$args) : ResponseInterface {
return new Response('Hello World !');
}
});
// Gets the route url for the get HTTP method
echo $partial->getRouteUrl('hello', null, [], 'get');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.