From 47e77f9fac1155c536b2b87fec552c7fcce66fa6 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Mon, 01 Jun 2026 18:06:34 +0000
Subject: [PATCH] =Timeline block fixes. Next up: adding article schema classes
---
inc/registrar/fields/RepeaterField.php | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/inc/registrar/fields/RepeaterField.php b/inc/registrar/fields/RepeaterField.php
index 601634a..5168712 100644
--- a/inc/registrar/fields/RepeaterField.php
+++ b/inc/registrar/fields/RepeaterField.php
@@ -11,11 +11,11 @@
protected string $add_label = 'Add Row';
protected string $row_label = 'New Item';
- public function setAdd_label(string $label):void
+ public function setAddLabel(string $label):void
{
$this->add_label = $label;
}
- public function getAdd_label():string
+ public function getAddLabel():string
{
return $this->add_label;
}
@@ -33,7 +33,7 @@
}
return true;
}
- public function setRow_label(string $label):void
+ public function setRowLabel(string $label):void
{
if (str_contains($label, '{{')) {
if (!$this->checkFieldVariables($label)) {
@@ -43,7 +43,7 @@
$this->row_label = $label;
}
- public function getRow_label():string
+ public function getRowLabel():string
{
return $this->row_label;
}
--
Gitblit v1.10.0