6

Drupal 7 のエンティティとフィールド API を使用して、新しいモジュールを正しく構築しようとしています。ドキュメントから理解できなかったのは、新しい API を使用して、Body などの多数のセット フィールドを持つ「コンテンツ タイプ」(ノード タイプではない) を作成する正しい方法です。

hook_entity_info を使用してエンティティをセットアップしようとしています。次に、field_create_instance を使用して body フィールドを追加する必要があると思いますが、機能させることができないようです。

mycontenttype.module 内:

/**
 * Implements hook_entity_info().
 */
function mycontenttype_entity_info() {
  $return = array(
    'mycontenttype' => array(
      'label' => t('My Content Type'),
      'controller class' => 'MyContentTypeEntityController',
      'base table' => 'content_type',
      'uri callback' => 'content_type_uri',
      'entity keys' => array(
        'id' => 'cid',
        'label' => 'title',
      ),
      'bundles' => array(
        'mycontenttype' => array(
          'label' => 'My Content Type',
          'admin' => array(
            'path' => 'admin/contenttype',
            'access arguments' => array('administer contenttype'),
          ),
        ),
      ),
      'fieldable' => true,
    ),
  );
  return $return;
}

/**
 * Implements hook_field_extra_fields().
 */
function mycontenttype_field_extra_fields() {
  $return['mycontenttype']['mycontenttype'] = array(
    'form' => array(
      'body' => array(
        'label' => 'Body',
        'description' => t('Body content'),
        'weight' => 0,
      ),
    ),
  );
  return $return;
} 

では、これは .install ファイルに入りますか?

function mycontenttype_install() {
  $field = array(
    'field_name' => 'body',
    'type' => 'text_with_summary',
    'entity_types' => array('survey'),
    'translatable' => TRUE,
  );
  field_create_field($field);

  $instance = array(
    'entity_type' => 'mycontenttype',
    'field_name' => 'body',
    'bundle' => 'mycontenttype',
    'label' => 'Body',
    'widget_type' => 'text_textarea_with_summary',
    'settings' => array('display_summary' => TRUE),
    'display' => array(
      'default' => array(
        'label' => 'hidden',
        'type' => 'text_default',
      ),
      'teaser' => array(
        'label' => 'hidden',
        'type' => 'text_summary_or_trimmed',
      ),
    ),
  );
  field_create_instance($instance);
}
4

4 に答える 4

1

同じ道を歩み始めたばかりですここにファゴからのビデオがあります

于 2011-03-24T19:17:49.790 に答える
1

ノードモジュールがインストールされている場合、「body」という名前のフィールドが既に存在するという問題があると思います。フィールドの名前を 'mycontenttype_body' (comment.module は comment_body を使用) のような名前に変更するか、'body' フィールドを再利用してフィールド部分の追加をスキップし、そのインスタンスの追加をスキップする必要があります。後者よりも前者をお勧めします。

于 2011-01-16T06:42:39.317 に答える
1

すべてのフィールドには、配列プロパティ entity_types があり、フィールドを関連付けることができるエンティティを制限します。私が見つけることができる最高の Drupal ソリューションである hook_field_create_field は、作成時にフィールドを変更できますが、インストール時に作成される body フィールドには適していません。だから私の解決策は、hook_installでデータベースを直接編集することです

  $data_col = db_query("field_config からデータを選択します。field_name = 'body'")->fetchAssoc();
  $data = unserialize($data_col['data']);
  $data['entity_types'][] = 'MY_ENTITY_TYPE';
  db_update('field_config')
    ->fields(array('data' => array('data' => serialize($data))))
    ->条件('field_name', 'body')
    ->execute();
于 2011-03-12T17:01:45.393 に答える
0

開始するのに最適なレポは次のとおりです。Lawmakers entity

于 2014-07-29T11:45:47.957 に答える