File tree Expand file tree Collapse file tree
src/RecordManager/Base/Record Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -304,4 +304,40 @@ function ($field) use ($mask) {
304304 $ fields
305305 );
306306 }
307+
308+ /**
309+ * Add author fields.
310+ *
311+ * @param array $data Data array to manipulate
312+ *
313+ * @return void
314+ */
315+ protected function addAuthorFields (array &$ data ): void
316+ {
317+ // Nothing to do for authority records.
318+ }
319+
320+ /**
321+ * Augment call number fields with additional data.
322+ *
323+ * @param array $data Data array to manipulate
324+ *
325+ * @return void
326+ */
327+ protected function augmentCallNumberFields (array &$ data ): void
328+ {
329+ // Nothing to do for authority records.
330+ }
331+
332+ /**
333+ * Add Dewey fields.
334+ *
335+ * @param array $data Data array to manipulate
336+ *
337+ * @return void
338+ */
339+ protected function addDeweyFields (array &$ data ): void
340+ {
341+ // Nothing to do for authority records.
342+ }
307343}
You can’t perform that action at this time.
0 commit comments