Skip to content

Commit

Permalink
[imp] release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phproberto committed Mar 29, 2018
1 parent b121897 commit c793e26
Show file tree
Hide file tree
Showing 85 changed files with 86 additions and 86 deletions.
2 changes: 1 addition & 1 deletion extensions/libraries/joomla_entity/joomla_entity.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<authorUrl>www.phproberto.com</authorUrl>
<copyright>Copyright (C) 2018 Roberto Segura López. All rights reserved.</copyright>
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
<version>0.0.1</version>
<version>1.0.0</version>
<description>Semantical API for Joomla!</description>
<files>
<folder>language</folder>
Expand Down
4 changes: 2 additions & 2 deletions extensions/libraries/joomla_entity/library.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* @package Phproberto\Joomla\Model
* @package Phproberto\Joomla\Entity
* @subpackage Library
*
* @copyright Copyright (C) 2018 Roberto Segura López. All rights reserved.
Expand All @@ -20,4 +20,4 @@

// Load library language
$lang = Factory::getLanguage();
$lang->load('lib_phproberto_joomla_model', __DIR__);
$lang->load('lib_joomla_entity', __DIR__);
2 changes: 1 addition & 1 deletion extensions/libraries/joomla_entity/src/Acl/Acl.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* Entity ACL.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
class Acl extends Decorator
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Describes methods required by entities with ACL support.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
interface Aclable extends EntityInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Trait for entities with ACL.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasAcl
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Stub to test Entity class.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
class Category extends ComponentEntity implements Publishable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Trait for entities that have associated categories.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasCategories
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Trait for entities that have an asset. Based on category_id|catid column.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasCategory
{
Expand Down
2 changes: 1 addition & 1 deletion extensions/libraries/joomla_entity/src/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Represents a collection of entities.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
class Collection implements \ArrayAccess, \Countable, \IteratorAggregate
{
Expand Down
2 changes: 1 addition & 1 deletion extensions/libraries/joomla_entity/src/ComponentEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* Entity class.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
abstract class ComponentEntity extends Entity implements ComponentEntityInterface
{
Expand Down
2 changes: 1 addition & 1 deletion extensions/libraries/joomla_entity/src/Content/Article.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/**
* Article entity.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
class Article extends ComponentEntity implements Aclable, Ownerable, Publishable, Translatable, Validable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/**
* Content category entity.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
class Category extends BaseCategory implements Aclable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Trait for entities that have an associated article.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasArticle
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Trait for entities that have associated articles.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasArticles
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* ArticleValidator validator.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
class ArticleValidator extends Validator
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Describes methods required by entities.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
interface ComponentEntityInterface extends EntityInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Describes methods required by entities.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
interface EntityInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Exception interface.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
interface ExceptionInterface
{
Expand Down
2 changes: 1 addition & 1 deletion extensions/libraries/joomla_entity/src/Core/Asset.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Asset entity.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
class Asset extends Entity
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Backend client.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
final class Administrator extends BaseClient implements ClientInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Base client.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
abstract class BaseClient
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Client selector.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
abstract class Client
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Frontend client.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
final class Site extends BaseClient implements ClientInterface
{
Expand Down
2 changes: 1 addition & 1 deletion extensions/libraries/joomla_entity/src/Core/Column.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Columns supported by core.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
abstract class Column
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Publishable entities requirements.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
interface Publishable
{
Expand Down
2 changes: 1 addition & 1 deletion extensions/libraries/joomla_entity/src/Core/Extension.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* Extension entity.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
class Extension extends Entity implements Publishable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Component entity.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
class ActiveComponent extends Component
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* Component entity.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
class Component extends Extension implements Aclable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Trait for entities with access column.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasAccess
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Trait for entities that have an asset. Based on asset_id column.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasAsset
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Trait for entities with associations.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasAssociations
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* Trait for entities that have an associated client.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasClient
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Trait for entities with an associated component.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasComponent
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Methods for entities that have events.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasEvents
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Trait for entities with featured column.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasFeatured
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Trait for entities with images.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasImages
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Classes using multiple singleton instances.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasInstances
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Trait for linkable entities.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasLink
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Trait for entities with metadata. Based on metadata columns.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasMetadata
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Trait for entities with params. Based on params | attribs columns.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasParams
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Trait for entities that have an associated publish down column.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasPublishDown
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Trait for entities that have an associated publish up column.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasPublishUp
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Trait for entities with state.
*
* @since __DEPLOY_VERSION__
* @since 1.0.0
*/
trait HasState
{
Expand Down
Loading

0 comments on commit c793e26

Please sign in to comment.