|
As of version 0.2, you can customize the the content types as well as the tag relations and dynamic field relations. The customization is done in the “conf” section of the .bxt file. The exact location of the customized settings can be found in bxt_file_structure. The variables $cype_set, $tagrel_set and $dfield_set in the example bxt file should be replaced by values of the structure given below. Content Typesctype_set=“title”:1,”body”:2,”tags”:3 The first field is labeled “title”. It is of field type 1 (one-line text). The second field is labeled “body”. It is of field type 2 (multi-line text). The third field is labeled “tags”. It is of field type 3 (comma-delimited text). Wiringtagrel_set=“note”:3,”excerpt”:4 This establishes a tag relation between field 3 of ctype “note” and field 4 of ctype “excerpt”. Note that the linked fields have to be of type 3 (comma-delimited text). dfield_set=“excerpt”,3,”source”,1,2 Field 3 of any item of ctype “excerpt” is compared to field 1 of any item of ctype “source”. If there is a match between the content of the two compared fields, field 3 of the matching excerpt will be replaced by field 2 of the matching source. |