<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"><meta name=Generator content="Microsoft Word 14 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
        {font-family:"\@SimSun";
        panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:SimSun;
        mso-fareast-language:ZH-CN;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:70.85pt 70.85pt 70.85pt 70.85pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=NL-BE link=blue vlink=purple><div class=WordSection1><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>Dear,<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>This list is for Drupal core development, regarding your question: this is possible with standard cck module.<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>Cheers<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>Peter Droogmans<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span lang=EN-US style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> development-bounces@drupal.org [mailto:development-bounces@drupal.org] <b>On Behalf Of </b>??<br><b>Sent:</b> zondag 26 februari 2012 16:22<br><b>To:</b> development@drupal.org<br><b>Subject:</b> [development] write a simple field type for CCK<o:p></o:p></span></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal style='margin-bottom:12.0pt'>Hi all, <br>&nbsp; I'm new to drupal module development, and want to write a simple field type for CCK, just to give a list for user to select, and then store the value. Drupal Verison is 6.22<br>To make it simple, I only write some hooks that I think may needed in the module.... <br>and things get wrong, the row in the table is created in the database,&nbsp; but the field is not able to store data in the database, when I click submit, the page comes to be blank. <br><br>Here's the code for zebra.module. Did I forget some thing, thanks for your help.<br><br>&lt;?php<br><br>function zebra_field_info() {<br>&nbsp;&nbsp;&nbsp; return array(<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'zebra' =&gt; array('label' =&gt; 'Zebra field',),<br>&nbsp;&nbsp;&nbsp; );<br>}<br><br>function zebra_field_settings($op, $field) {<br>&nbsp;&nbsp;&nbsp; switch ($op) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; case 'database columns': <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $columns['value'] = array(<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'type' =&gt; 'varchar',<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'length' =&gt; 255,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'not null' =&gt; FALSE,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'sortable' =&gt; TRUE,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; );<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return $columns;<br>&nbsp;&nbsp;&nbsp; };<br>}<br><br>function zebra_field($op, &amp;$node, $field, &amp;$items, $teaser, $page) {<br>&nbsp;&nbsp;&nbsp; switch ($op) {<br>&nbsp;&nbsp;&nbsp; }<br>}<br><br>function zebra_widget_info() {<br>&nbsp;&nbsp;&nbsp; return array(<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'zebra_widget' =&gt; array(<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'label' =&gt; 'Zebra Widget', <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'field types' =&gt; array('zebra'),<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ),<br>&nbsp;&nbsp;&nbsp; );<br>}<br><br>function zebra_widget_settings($op, $widget) {<br>&nbsp;&nbsp;&nbsp; switch ($op) {<br>&nbsp;&nbsp;&nbsp; }<br>}<br><br>function zebra_widget($op, &amp;$node, $field, &amp;$items) {<br>&nbsp;&nbsp;&nbsp; $element['value'] = array(<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; '#type' =&gt; 'select', <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; '#title' =&gt; t($field['widget']['label']),<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; '#default_value' =&gt; variable_get('zebra_widget_value', '0'),<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; '#options' =&gt; array('a', 'b', 'c', 'd'),<br>&nbsp;&nbsp;&nbsp; );<br><br>&nbsp;&nbsp;&nbsp; return $element;<br>}<br clear=all><br>thanks,<br>-- <br>Zan Guo<br>E-Mail: <a href="mailto:guozan523@gmail.com" target="_blank">guozan523@gmail.com</a><o:p></o:p></p></div></body></html>