Download the PHP package elvandar/kazetenn-pages without Composer

On this page you can find all versions of the php package elvandar/kazetenn-pages. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package kazetenn-pages

kazetenn-pages

Description

Kazetenn Pages is a symfony bundle that allow you to handle basic pages programatically.

Installation

You can use

composer require elvandar/kazetennpages

to install the bundle.

you will also need to configure stof/doctrineextensionsbundle:

in config/packages/stof_doctrine_extensions.yaml

Usage

The bundle provides a simple data model to handle the programatical creation of pages and some routes and views to display those pages.

configuration:

To use the routes provided by the bundle, you will have to add the following line to config/routes.yaml:

``

in config/packages/kazetenn-pages.yaml:

by default there is no prefix in front the diplay route, however, using this config you can add one.

the data model

the budle articulates around 2 entities:

Page

which represent a page to display

in a page, you can define:

this will be used to handle the page display and url

if the page have no parent, her url will be:

/{blog_url}/{slug}

if the page have a parent, her url will be:

/{blog_url}/{parent_slug}/{slug}

PageContent

which handle the content of a page.

in a pageContent, you will can define:

The content is a text/html. It will always be rendered using the raw twig function.

The template allows you to define a twig template to personalize the rendering of the content without storing html in the database.

A pageContent can reference multiple other pageContent (childs). Using the align property, you can define the way a content's childs will be rendered. Using this, you can easilly create a grid of content, allowing you to easily order you content. To ease this, a pageContent's content property can be null, allowing you to create an ordering pageContent.

Finally, the order property allow you to choose the rendering order of a pageContent between him and same level contents.

License

The pages bundle is under MIT liscence


All versions of kazetenn-pages with dependencies

PHP Build Version
Package Version
Requires php Version 8.1.*
ext-json Version *
composer/package-versions-deprecated Version 1.11.99.4
doctrine/annotations Version 1.13.*
doctrine/doctrine-bundle Version 2.7.*
doctrine/doctrine-migrations-bundle Version 3.2.*
doctrine/orm Version 2.12.*
elvandar/kazetenn-admin Version 1.*
elvandar/kazetenn-users Version 1.*
elvandar/kazetenn-core Version 1.*
phpdocumentor/reflection-docblock Version >=5.2
stof/doctrine-extensions-bundle Version >=1.7
symfony/asset Version 6.2.*
symfony/console Version 6.2.*
symfony/dotenv Version 6.2.*
symfony/expression-language Version 6.2.*
symfony/flex Version 2.2.*
symfony/form Version 6.2.*
symfony/framework-bundle Version 6.2.*
symfony/http-client Version 6.2.*
symfony/intl Version 6.2.*
symfony/mailer Version 6.2.*
symfony/mime Version 6.2.*
symfony/monolog-bundle Version 3.*
symfony/notifier Version 6.2.*
symfony/process Version 6.2.*
symfony/property-access Version 6.2.*
symfony/property-info Version 6.2.*
symfony/proxy-manager-bridge Version 6.2.*
symfony/runtime Version 6.2.*
symfony/security-bundle Version 6.2.*
symfony/serializer Version 6.2.*
symfony/string Version 6.2.*
symfony/translation Version 6.2.*
symfony/twig-bundle Version 6.2.*
symfony/uid Version 6.2.*
symfony/validator Version 6.2.*
symfony/web-link Version 6.2.*
symfony/yaml Version 6.2.*
twig/extra-bundle Version 3.4.*
twig/twig Version 3.4.*
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package elvandar/kazetenn-pages contains the following files

Loading the files please wait ....