is_movie()) { $form->edit_item->input("vidheight")->label(t("Video Height")) ->value($item->height); $form->edit_item->input("vidwidth")->label(t("Video Width")) ->value($item->width); } } static function item_edit_form_completed($item, $form) { // Save the new height and width to the database. if ($item->is_movie()) { $item->height = $form->edit_item->vidheight->value; $item->width = $form->edit_item->vidwidth->value; $item->save(); } } }