PHP code example of ugie-cake / cakephp-content-blocks
1. Go to this page and download the library: Download ugie-cake/cakephp-content-blocks 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/ */
ugie-cake / cakephp-content-blocks example snippets
bin/cake plugin load ContentBlocks
$this->addPlugin('ContentBlocks');
$this->loadHelper('ContentBlocks.ContentBlock');
declare(strict_types=1);
use Migrations\AbstractSeed;
class ContentBlocksSeed extends AbstractSeed
{
public function run(): void
{
$data = [
[
'parent' => 'global',
'label' => 'Website Title',
'description' => 'Shown on the home page, as well as any tabs in the users browser.',
'slug' => 'website-title',
'type' => 'text',
'value' => 'ugie-cake/cakephp-content-blocks-example-app',
],
[
'parent' => 'global',
'label' => 'Logo',
'description' => 'Shown in the centre of the home page, and also in the top corner of all administration pages.',
'slug' => 'logo',
'type' => 'image',
],
[
'parent' => 'home',
'label' => 'Home Page Content',
'description' => 'The main content shown in the centre of the home page.',
'slug' => 'home-content',
'type' => 'html',
'value' => '<p>Example app showcasing the <code>ugie-cake/cakephp-content-blocks</code> plugin.</p>',
],
[
'parent' => 'home',
'label' => 'Copyright Message',
'description' => 'Copyright information shown at the bottom of the home page.',
'slug' => 'copyright-message',
'type' => 'text',
'value' => '(c) Copyright 2023, enter copyright owner here.',
],
];
$table = $this->table('content_blocks');
$table->insert($data)->save();
}
}
# File: config/Seeds/HtmlBlockSeed.php
class HtmlBlockSeed extends \Migrations\AbstractSeed
{
public function run(): void
{
$data = [
[
'parent' => 'about-us',
'slug' => 'about-us-content',
'label' => 'About Us - Main Content',
'description' => 'Main block of code shown on the About Us page.',
'type' => 'html',
'value' => '
<h2>Our Story</h2>
<p>We are a small business, established in 2023 who sell candles to sick children.</p>
',
],
];
$this->table('content_blocks')->insert($data)->save();
}
}
<?= $this->ContentBlock->html('block-name')
# File: config/Seeds/TextBlockSeed.php
class TextBlockSeed extends \Migrations\AbstractSeed
{
public function run(): void
{
$data = [
[
'parent' => 'home',
'slug' => 'website-title',
'label' => 'Website Title',
'description' => 'Heading shown on the main page, and also in the browser tab.',
'type' => 'text',
'value' => 'CakePHP Content Blocks Plugin',
],
];
$this->table('content_blocks')->insert($data)->save();
}
}
# File: config/Seeds/ImageBlockSeed.php
class ImageBlockSeed extends \Migrations\AbstractSeed
{
public function run(): void
{
$data = [
[
'parent' => 'global',
'slug' => 'logo',
'label' => 'Logo',
'description' => 'Shown on the home page, and also in the top left of each other page.',
'type' => 'image',
],
];
$this->table('content_blocks')->insert($data)->save();
}
}