default.profile

Главные вкладки

Аватар пользователя Nicola Nicola 16 июля 2007 в 15:43

Подскажите, вот я пишу .profile

Как добавить поле ССК в тип контента?

$content[type] = array (
'name' => 'Новость',
'type' => 'news',
'description' => '',
'title_label' => 'Коротко',
'body_label' => 'Развернуто',
'min_word_count' => '0',
'help' => '',
'node_options' =>
array (
'status' => true,
'promote' => false,
'sticky' => false,
'revision' => false,
),
'comment' => '2',
'privatemsg_link' =>
array (
'node' => false,
'teaser' => true,
'comment' => false,
),
'upload' => 1,
'old_type' => 'news',
'orig_type' => '',
'module' => 'node',
'custom' => '1',
'modified' => '1',
'locked' => '0',
);
$content[fields] = array (
0 =>
array (
'widget_type' => 'image',
'label' => 'фото',
'weight' => '-3',
'max_resolution' => '640x480',
'image_path' => 'news_images',
'custom_alt' => 0,
'custom_title' => 0,
'description' => '',
'group' => false,
'required' => '0',
'multiple' => '0',
'field_name' => 'field_image',
'field_type' => 'image',
'module' => 'imagefield',
),
);

Так она только тип ноды сохраняет:
$type = (object) _node_type_set_defaults($type);
node_type_save($type);

Комментарии