Back to AdminModel class

Method editAssociations

public bool
editAssociations
(mixed $data)
Method to load an item in com_associations.
Parameters
  • array $data The form data.
Returns
  • bool True if successful, false otherwise.
Since
  • 3.9.0
Deprecated
  • 5.0
Class: AdminModel
Project: Joomla

Method editAssociations - Source code

/**
 * Method to load an item in com_associations.
 *
 * @param   array  $data  The form data.
 *
 * @return  boolean  True if successful, false otherwise.
 *
 * @since   3.9.0
 *
 * @deprecated 5.0  It is handled by regular save method now.
 */
public function editAssociations($data)
{
    // Save the item
    return $this->save($data);
}