Esempio n. 1
0
 /**
  * Update cache after a field group is renamed.
  *
  * @param string $original_name The old name of the field group.
  * @param Types_Field_Group $field_group The field group involved, with already updated name.
  */
 public function field_group_renamed($original_name, $field_group)
 {
     if ($field_group->get_post_type() == $this->get_post_type()) {
         $this->clear_from_cache($original_name);
         $this->save_to_cache($field_group);
     }
 }