Download the PHP package kavezoo/jeffadmin without Composer

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

JeffAdmin

Version: 1.0.10

JeffAdmin is a CakePHP 5 admin UI plugin: layout, assets, view helpers, display switches, and a Bake theme that generates list, form, and view screens in one consistent look.

Composer: kavezoo/jeffadmin

Credits & inspiration

JeffAdmin’s visual foundation comes from CoolAdmin — the HTML admin template whose structure, sidebar, and card-based screens shaped the plugin’s CSS and layout.

PikeAdmin provided the idea of turning that kind of admin experience into a CakePHP-native package: Bake-driven CRUD, helpers, and a reusable plugin instead of a one-off theme copy.

JeffAdmin builds on both: CoolAdmin for how it looks, PikeAdmin for how a CakePHP admin plugin should be packaged and generated — then extends the result with Tom Select, SweetAlert delete flows, configurable $show switches, related-record tabs, and more.

Requirements

Installation

Create a CakePHP ~5.4 app (or use an existing one), then require the plugin:

Or, without a version constraint (latest stable):

On Windows, use php bin/cake.php … instead of the bin/cake shell script.

Setup

1. Load the plugin

In config/plugins.php:

Or in src/Application.php:

The plugin bootstrap:

2. Session (host bootstrap)

Add session config at the end of config/bootstrap.php (Bake theme write is optional if the plugin already set it):

3. Helpers

You do not need to load JeffAdmin helpers in src/View/AppView.php — the plugin registers them automatically.

4. Admin AppController

Create src/Controller/Admin/AppController.php:

The layout (JeffAdmin.default) comes from the plugin AppController.

5. Admin routes

In config/routes.php:

Point the default controller/action at your own models.

6. Bake Admin files

Single model:

Multiple prefixes (e.g. Member)

  1. Add the prefix in config/routes.php:

  2. Create src/Controller/Member/AppController.php the same way as Admin (extend JeffAdmin\Controller\AppController).

  3. Bake:

Sidebar & layout elements

The layout calls $this->element('JeffAdmin.nav') (and header, header_top, footer the same way).

CakePHP looks under the current prefix first. If the host file exists, it wins; otherwise the plugin default is used.

Same pattern for header.php, header_top.php, footer.php.

No bootstrap menu config. Copy vendor/kavezoo/jeffadmin/templates/element/nav.php to templates/Admin/element/nav.php and add your links.

UI assets live only in the plugin — do not copy webroot into the host.

Display switches ($show)

Global defaults: plugin config/show.phpConfigure::read('JeffAdmin').

Notable defaults:

Per-template override in baked files:

View related tabs (HasMany / BelongsToMany): section markers Related: {Alias} (start|end); active columns like index (name/title, visible, pos, created/modified, actions); other fields in /* */. Per-table override via $relatedLocal['Alias'] (e.g. deleteGuardByCounts => false). Model bake keeps // 'dependent' => true commented for optional cascade delete.

Pagination (JeffAdmin.paginate)

Controller settings live in a separate file from $show: plugin config/paginate.phpJeffAdmin.paginate.limit / maxLimit (default 10 / 100). Applied by the plugin AppController.

Host override: Configure::write('JeffAdmin.paginate.limit', 25). Per controller in index(): $this->paginate['limit'] = 25.

Updating

If composer.json pins an exact version, widen the constraint (e.g. ^1.0) first, then update.

License

MIT — see LICENSE.

Enjoy JeffAdmin!

Jeff Shoemaker


All versions of jeffadmin with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1
cakephp/cakephp Version ^5.0
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 kavezoo/jeffadmin contains the following files

Loading the files please wait ...