Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for EntityPropertyExtraFieldsController #4

Open
wants to merge 1 commit into
base: 7.x-1.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 0 additions & 31 deletions entity_property_extra_fields/README.txt

This file was deleted.

This file was deleted.

79 changes: 0 additions & 79 deletions entity_property_extra_fields/entity_property_extra_fields.module

This file was deleted.

1 change: 1 addition & 0 deletions wf_environment/wf_environment.module
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ function wf_environment_entity_info() {
'label' => t('Workflow Environment'),
'entity class' => 'WfEnvironment',
'controller class' => 'EntityAPIController',
'extra fields controller class' => 'EntityPropertyExtraFieldsController',
'base table' => 'wf_env',
'revision table' => 'wf_env_revision',
'fieldable' => TRUE,
Expand Down
1 change: 1 addition & 0 deletions wf_job/wf_job.module
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ function wf_job_entity_info() {
'label' => t('Workflow Job'),
'entity class' => 'WfJob',
'controller class' => 'WfJobController',
'extra fields controller class' => 'EntityPropertyExtraFieldsController',
'base table' => 'wf_job',
'revision table' => 'wf_job_revision',
'fieldable' => TRUE,
Expand Down
1 change: 1 addition & 0 deletions wf_log/wf_log.module
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ function wf_log_entity_info() {
'label' => t('Workflow Log'),
'entity class' => 'WfLog',
'controller class' => 'WfLogController',
'extra fields controller class' => 'EntityPropertyExtraFieldsController',
'base table' => 'wf_log',
'entity keys' => array(
'id' => 'lid',
Expand Down
1 change: 1 addition & 0 deletions wf_site/wf_site.module
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ function wf_site_entity_info() {
'label' => t('Workflow Site'),
'entity class' => 'WfSite',
'controller class' => 'WfSiteController',
'extra fields controller class' => 'EntityPropertyExtraFieldsController',
'base table' => 'wf_site',
'revision table' => 'wf_site_revision',
'fieldable' => TRUE,
Expand Down