phproberto / joomla-entity
Entities for Joomla!
Requires
- php: ^7.0
Requires (Dev)
- joomla/coding-standards: ~2.0@alpha
- phpunit/phpunit: ^4.8.35
- squizlabs/php_codesniffer: ^2.8
- dev-2.0-dev
- dev-master / 2.0.x-dev
- v2.0.0
- v1.9.0
- v1.8.0
- v1.7.3
- v1.7.2
- v1.7.1
- v1.7.0
- v1.6.0
- v1.5.0
- v1.4.1
- v1.4.0
- v1.3.0
- v1.2.0
- v1.1.0
- v1.0.2
- v1.0.1
- v1.0.0
- dev-dependabot/npm_and_yarn/build/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/build/engine.io-and-browser-sync-6.2.1
- dev-dependabot/npm_and_yarn/build/socket.io-parser-and-browser-sync-4.2.1
- dev-dependabot/npm_and_yarn/build/ini-1.3.7
This package is auto-updated.
Last update: 2025-03-29 00:32:57 UTC
README
Because developing Joomla extensions should be fun and easy.
Quickstart
Let's use a fast example. This is how you actually can load an article by its id in Joomla:
Where $article
is a stdClass
object. You can access its properties but it's really a dummy thing. An end point.
With an Article entity you can do:
Here $article
is an Article entity. An object that exposes its logic and resources to the developer.
Some awesome things that you can do with that article entity:
// Use article as entity echo $article->get('title'); // Use params transparently if ($article->param('show_title', '1') === '1') { echo $article->get('title'); } // Check if article is featured if ($article->isFeatured()) { // Do something } // Check if article has an intro image if ($article->hasIntroImage()) { $image = $article->getIntroImage(); echo '<img src="' . JUri::root(true) . '/' . $image['url'] . '" />'; } // Check article state if ($article->isPublished()) { echo 'Article published!'; } // Retrieve article category echo $article->category()->get('title'); // You can modify article properties $article->set('title', 'My modified title'); // And save it try { $article->save(); } catch (\RuntimeException $e) { echo 'There was an error saving article: ' . $e->getMessage(); }
See the full documentation for other examples.
Installation
Go to the releases section and follow the How to install / upgrade
instructions in the latest release.
Documentation
Documentation is published in https://phproberto.github.io/joomla-entity/.
Requirements
- PHP 7.1+
- Joomla! CMS v3.9+
Copyright & License
This library is licensed under GNU LESSER GENERAL PUBLIC LICENSE.
Copyright (C) 2017-2019 Roberto Segura López - All rights reserved.