Extension Hooks

publish_admin_edit_field_type_pulldown

Hook Added in Version:

EE 1.4.2

Hook File Location:

cp.publish_ad.php

Hook Description:

Allows modifying or adding onto Custom Weblog Field Type Pulldown

Hook Parameters

  • $data - The data about this field from the database
  • $typemenu - The current contents of the type menu

Hook Returns Data?

Yes

Appearance of Hook in the Code

if (isset($EXT->extensions['publish_admin_edit_field_type_pulldown']))
{
 $typemenu = $EXT->call_extension('publish_admin_edit_field_type_pulldown', $data, $typemenu);
}