Download the PHP package iankov/control-panel without Composer

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

Installation

Elfinder file manager integration

Laravel elfinder package

Configuration options

Developing a new module

Basic concept

Basic concept of building a module is to make a separate route file for the module. You can place it in a standard folder. I.e. if you make a module to create and delete news, it could be file with the following content:

Registering a module

When you make a new module, you need to add it to . Minimum requirement is to add route path to the array like this:

Optional parameter defines a namespace for our controller. In our case is most likely located in

Adding menu item

After you register a module, you'll be able to use routes in like this:

This will add a new menu item into master template menu of your control panel. If you don't register your module you'll get an error when using or function in .
However you can always use a regular string to define a . It could be relative path like or a full url like .

**** function is the same as standard laravel except that it adds the prefix on the beginning of the given route.
I.e. (by default) then is equal to

Views

Most likely you'd want to use a master template of for you admin panel pages. This can easily be done by extending your blade template.

Sections available:

Changing stardard iankov/control-panel views

For this purpose just publish all views to directory.

Now you have a set of files available for making changes in .

Horizontal form groups

When validation error occured, text of an error be shown in the bottom of the field. The field itself will have a red border.