Download the PHP package webfactorybulgaria/base without Composer

On this page you can find all versions of the php package webfactorybulgaria/base. 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 base

Admintool4

[Packagist]() [Packagist]() [SensioLabs Insight]() [Scrutinizer]()

Admintool4 is a modular multilingual content management system built with Laravel 5.2 based on TypiCMS. Out of the box you can manage pages, events, news, places, sliders, etc.

TypiCMS screenshot

Table of contents

Features

URLs

This kind of URLs are managed by the CMS:

Modules:

Pages:

Requirements

Installation

First install Node.js and gulp

  1. Create a new project

  2. Enter the newly created folder

  3. DB migration and seed, user creation, npm installation and directory rights

Go to http://mywebsite.local/admin and log in.

npm & Gulp

In order to work on assets, you need to install Node.js and gulp, then cd to your website folder and run these commands:

  1. Install gulp packages according to gulpfile.js (directory node_modules)

  2. Compile admin and public assets

Configuration

  1. Set locales in config/translatable.php.
  2. Set fallback_locale in config/app.php.
  3. Set main_locale_in_url in config/typicms.php to true or false.
  4. Cache driver is set to array, you can change it to another taggable cache system such as redis or memcached in your .env file.

Installation of a module

This example is for the News module. After these steps, the module will appear in the sidebar of the back office. If you need to customize it, publish it!

  1. Install module with Composer

  2. Add to config/app.php, before
  3. Publish views and migrations

  4. Migrate the database

Module scaffolding

This example is for a new module called Cats.

  1. Create the module with artisan:

  2. The module is in /Modules/Cats, you can customize it
  3. Add to config/app.php, before
  4. Migrate the database

Existing modules

Each module can be published in order to be modified and tracked by git. Here is more info on publishing a module.

Pages

Pages are nestable with drag and drop, on drop, URIs are generated and saved in the database. Each translation of a page has its own route. A page can be linked to a module.

Menus

Each menu has nestable entries. One entry can be linked to a page or URL. You can return a HTML formated menu with .

Projects

Projects have categories, projects URLs follows this pattern: /en/projects/category-slug/project-slug

Categories

Categories have many projects.

Tags

Tags are linked to projects and use the Selectize jQuery plugin. The tags module has many to many polymorphic relations so it could easily be linked to other modules.

Events

Events have starting and ending dates.

News

Simple news module with linked files/images galleries.

Contacts

Frontend contact form and admin side records management.

Partners

A partner has a logo, website URL, title and body content.

Files

The files module allows you to upload multiple files. It uses DropzoneJS to upload them. Thumbnails are generated on the fly with Croppa.

Galleries

You can create as many galleries as you want, each gallery has many files. Galleries are linkable to any module item through a polymorphic many to many relation.

Users and roles

User registration can be enabled through the settings panel (/admin/settings). Roles and Permissions are managed with spatie/laravel-permission.

Blocks

Blocks are useful to display custom content in your views. You can get the content of a block with .

Translations

Translations can be stored in the database through the admin panel (/admin/translations).

You can call DB translation everywhere with , or .

Sitemap

Route sitemap.xml generates a sitemap file in XML format. To add modules to the site map configure app/config/sitemap.php.

Settings

Change website title, and other options trough the settings panel. Settings are saved in the database

History

created, updated, deleted, online and offline actions are logged in database. 25 latest records are displayed in the back office’s dashboard.

Facades

Each modules has a facade that give you access to the repository, you can call for example to get the three latest news. Check available methods in each module’s repository.

Artisan commands

Commands are located in /vendor/admintool/core/src/Commands

Installation of Admintool4

Set cache key prefix in app/config/cache.php

This command is triggered by

Initial migration and seed

This command is triggered by

Clean the directory public/html

Publish a module

If you want to modify a module, for example add some fields or a relation, you can not do it easily because each module is in vendor directory. Each TypiCMS class has its empty "Shell Class". This is an empty class which extends the base one and that is the one used in the entire CMS. When you publish a module all Shell classes are copied to the /Modules directory where you can easily override methods and properties. For example, the module Pages will be published by running this command:

This will copy everything from /vendor/typicms/pages/src/Shells to /Modules/Pages/Shells.

Then in order for these new classes to take precedence you will have to

  1. Add this to your composer.json file: "TypiCMS\Modules\Pages\Shells\": "Modules/Pages/Shells/"
  2. Run composer dump-autoload

This way you will gain full controll of the module and in the same time you will be able to still update the module from the main repository if needed.

Create a module

You can easily scaffold a module, for a module named Cats, run this command:

Upgrade instructions

See the Wiki for upgrade instructions

Change log

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

License

Admintool4 is an open-source software licensed under the MIT license.


All versions of base with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
laravel/framework Version ~5.2.35
barryvdh/laravel-debugbar Version ~2.0
dimsav/laravel-translatable Version 5.6.0
edvinaskrucas/notification Version ~5.1.0
guzzlehttp/guzzle Version ~6.0
laracasts/presenter Version ~0.2.1
laracasts/utilities Version ~2.1.0
bkwld/croppa Version ~4.4.0
maatwebsite/laravel-sidebar Version ~1.1.1
barryvdh/laravel-elfinder Version ^0.3.6
propaganistas/laravel-translatable-bootforms Version ~1.3.2
roumen/feed Version ~2.10.1
spatie/laravel-permission Version ~1.3.4
webfactorybulgaria/nestablecollection Version ~1.1.1
webfactorybulgaria/objects Version ~4.1.0
webfactorybulgaria/core Version ~4.1.0
webfactorybulgaria/blocks Version ~4.1.0
webfactorybulgaria/dashboard Version ~4.1.0
webfactorybulgaria/files Version ~4.1.0
webfactorybulgaria/galleries Version ~4.1.0
webfactorybulgaria/roles Version ~4.1.0
webfactorybulgaria/history Version ~4.1.0
webfactorybulgaria/menus Version ~4.1.0
webfactorybulgaria/pages Version ~4.1.0
webfactorybulgaria/settings Version ~4.1.0
webfactorybulgaria/sitemap Version ~4.1.0
webfactorybulgaria/translations Version ~4.1.0
webfactorybulgaria/users Version ~4.2.0
adamwathan/form Version ~0.8.9
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 webfactorybulgaria/base contains the following files

Loading the files please wait ....