PhoenixKit.Entities (phoenix_kit v1.5.1)
View SourceDynamic entity system for PhoenixKit - WordPress ACF equivalent.
This module provides both the Ecto schema definition and business logic for managing custom content types (entities) with flexible field schemas.
Schema Fields
name: Unique identifier for the entity (e.g., "blog_post", "product")display_name: Human-readable name shown in UI (e.g., "Blog Post", "Product")description: Description of what this entity representsicon: Icon identifier for UI display (hero icons)status: Boolean indicating if the entity is activefields_definition: JSONB array of field definitionssettings: JSONB map of entity-specific settingscreated_by: User ID of the admin who created the entitydate_created: When the entity was createddate_updated: When the entity was last modified
Field Definition Structure
Each field in fields_definition is a map with:
type: Field type (text, textarea, number, boolean, date, select, etc.)key: Unique field identifier (snake_case)label: Display label for the fieldrequired: Whether the field is requireddefault: Default valuevalidation: Map of validation rulesoptions: Array of options (for select, radio, checkbox types)
Core Functions
Entity Management
list_entities/0- Get all entitieslist_active_entities/0- Get only active entitiesget_entity!/1- Get an entity by ID (raises if not found)get_entity_by_name/1- Get an entity by its namecreate_entity/1- Create a new entityupdate_entity/2- Update an existing entitydelete_entity/1- Delete an entity (and all its data)change_entity/2- Get changeset for forms
System Settings
enabled?/0- Check if entities system is enabledenabled?/0- Check if entities system is enabledenable_system/0- Enable the entities systemdisable_system/0- Disable the entities systemget_config/0- Get current system configurationget_max_per_user/0- Get max entities per user limitvalidate_user_entity_limit/1- Check if user can create more entities
Usage Examples
# Check if system is enabled
if PhoenixKit.Entities.enabled?() do
# System is active
end
# Create a blog post entity
{:ok, entity} = PhoenixKit.Entities.create_entity(%{
name: "blog_post",
display_name: "Blog Post",
description: "Blog post content type",
icon: "hero-document-text",
created_by: admin_user.id,
fields_definition: [
%{type: "text", key: "title", label: "Title", required: true},
%{type: "textarea", key: "excerpt", label: "Excerpt"},
%{type: "rich_text", key: "content", label: "Content", required: true},
%{type: "select", key: "category", label: "Category",
options: ["Tech", "Business", "Lifestyle"]},
%{type: "date", key: "publish_date", label: "Publish Date"},
%{type: "boolean", key: "featured", label: "Featured Post"}
]
})
# Get entity by name
entity = PhoenixKit.Entities.get_entity_by_name("blog_post")
# List all active entities
entities = PhoenixKit.Entities.list_active_entities()
Summary
Functions
Returns an %Ecto.Changeset{} for tracking entity changes.
Creates a changeset for entity creation and updates.
Counts the total number of entity data records across all entities.
Counts the total number of entities in the system.
Counts the total number of entities created by a user.
Creates an entity.
Deletes an entity.
Disables the entities system.
Enables the entities system.
Checks if the entities system is enabled.
Gets the current entities system configuration.
Gets a single entity by ID.
Gets a single entity by its unique name.
Gets the maximum number of entities a single user can create.
Gets summary statistics for the entities system.
Returns the list of active entities.
Returns the list of entities ordered by creation date.
Updates an entity.
Validates that a user hasn't exceeded their entity creation limit.
Functions
Returns an %Ecto.Changeset{} for tracking entity changes.
Examples
iex> PhoenixKit.Entities.change_entity(entity)
%Ecto.Changeset{data: %PhoenixKit.Entities{}}
Creates a changeset for entity creation and updates.
Validates that name is unique, fields_definition is valid, and all required fields are present. Automatically sets date_created on new records.
Counts the total number of entity data records across all entities.
Examples
iex> PhoenixKit.Entities.count_all_entity_data()
243
Counts the total number of entities in the system.
Examples
iex> PhoenixKit.Entities.count_entities()
15
Counts the total number of entities created by a user.
Examples
iex> PhoenixKit.Entities.count_user_entities(1)
5
Creates an entity.
Examples
iex> PhoenixKit.Entities.create_entity(%{name: "blog_post", display_name: "Blog Post"})
{:ok, %PhoenixKit.Entities{}}
iex> PhoenixKit.Entities.create_entity(%{name: ""})
{:error, %Ecto.Changeset{}}
Deletes an entity.
Note: This will also delete all associated entity_data records due to the on_delete: :delete_all constraint.
Examples
iex> PhoenixKit.Entities.delete_entity(entity)
{:ok, %PhoenixKit.Entities{}}
iex> PhoenixKit.Entities.delete_entity(entity)
{:error, %Ecto.Changeset{}}
Disables the entities system.
Sets the "entities_enabled" setting to false.
Examples
iex> PhoenixKit.Entities.disable_system()
{:ok, %Setting{}}
Enables the entities system.
Sets the "entities_enabled" setting to true.
Examples
iex> PhoenixKit.Entities.enable_system()
{:ok, %Setting{}}
Checks if the entities system is enabled.
Returns true if the "entities_enabled" setting is true.
Examples
iex> PhoenixKit.Entities.enabled?()
false
Gets the current entities system configuration.
Returns a map with the current settings.
Examples
iex> PhoenixKit.Entities.get_config()
%{enabled: false, max_per_user: 100, allow_relations: true, file_upload: false, entity_count: 0, total_data_count: 0}
Gets a single entity by ID.
Raises Ecto.NoResultsError if the entity does not exist.
Examples
iex> PhoenixKit.Entities.get_entity!(123)
%PhoenixKit.Entities{}
iex> PhoenixKit.Entities.get_entity!(456)
** (Ecto.NoResultsError)
Gets a single entity by its unique name.
Returns the entity if found, nil otherwise.
Examples
iex> PhoenixKit.Entities.get_entity_by_name("blog_post")
%PhoenixKit.Entities{}
iex> PhoenixKit.Entities.get_entity_by_name("invalid")
nil
Gets the maximum number of entities a single user can create.
Returns the system-wide limit for entity creation per user. Defaults to 100 if not set.
Examples
iex> PhoenixKit.Entities.get_max_per_user()
100
Gets summary statistics for the entities system.
Returns counts and metrics useful for admin dashboards.
Examples
iex> PhoenixKit.Entities.get_system_stats()
%{total_entities: 5, active_entities: 4, total_data_records: 150}
Returns the list of active entities.
Examples
iex> PhoenixKit.Entities.list_active_entities()
[%PhoenixKit.Entities{status: true}, ...]
Returns the list of entities ordered by creation date.
Examples
iex> PhoenixKit.Entities.list_entities()
[%PhoenixKit.Entities{}, ...]
Updates an entity.
Examples
iex> PhoenixKit.Entities.update_entity(entity, %{display_name: "Updated"})
{:ok, %PhoenixKit.Entities{}}
iex> PhoenixKit.Entities.update_entity(entity, %{name: ""})
{:error, %Ecto.Changeset{}}
Validates that a user hasn't exceeded their entity creation limit.
Checks the current number of entities created by the user against the system limit.
Returns {:ok, :valid} if within limits, {:error, reason} if limit exceeded.
Examples
iex> PhoenixKit.Entities.validate_user_entity_limit(1)
{:ok, :valid}
iex> PhoenixKit.Entities.validate_user_entity_limit(1)
{:error, "You have reached the maximum limit of 100 entities"}