
david at kineticode
Jul 18, 2008, 9:58 AM
Post #3 of 3
(128 views)
Permalink
|
|
Re: managing contributor roles in the GUI
[In reply to]
|
|
On Jul 18, 2008, at 01:04, Scott Lanning wrote: > I was playing with them yesterday to fix a problem, > and it seemed that you had to add a Field to the Contributor Type > first of all in order to get the 'New' link to appear in > the search for Contributors beside the ones of that type. Correct, otherwise there's nothing in roles, and so no point. > (The 'New' link apparently allows creating a new role, > though that's not at all obvious before you click the link.) Is it in the context-sensitive help? > So for example, we have a 'Country Office' contrib type > which doesn't have any custom fields, so the 'New' link doesn't > show up. We have another 'Press Contact' contrib type > which does have custom fields and the 'New' link appears. > Then adding a custom field to 'Country Office' made the 'New' link > appear when searching the contribs. > I still haven't figured out how to change the "contact types" > that show up in the dropdown menus in the 'CONTACTS' section > of the contributor profile. Somehow we have a default set > ('Primary Email', 'Home Phone', etc.) plus some custom ones; > I think they were just added by a script, not through the UI. IIRC, there's a table for those, but they might be hard-coded…yes, they're in the database: % rgrep 'Primary Email' sql sql/mysql/Bric/Biz/Contact.val:VALUES ('1', 'Primary Email', 'Primary Electronic Mail Address', '1', '1'); sql/Pg/Bric/Biz/Contact.val:VALUES ('1', 'Primary Email', 'Primary Electronic Mail Address', '1', '1'); There is no interface for modifying those, so unless you want to implement one, you'll just have to update them via psql. Best, Davdi
|