Extension Hooks

publish_admin_edit_field_type_celltwo

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 - Second Table Cell

Hook Parameters

  • $data - The data about this field from the database
  • $typopts - The current contents of the cell

Hook Returns Data?

Yes

Appearance of Hook in the Code

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