diff --git a/src/Pages/CopyrightPage.php b/src/Pages/CopyrightPage.php index 4a4bac7..9a42d5a 100644 --- a/src/Pages/CopyrightPage.php +++ b/src/Pages/CopyrightPage.php @@ -63,6 +63,14 @@ class CopyrightPage extends LegalPage */ private static $icon = 'silverware/legals: admin/client/dist/images/icons/CopyrightPage.png'; + /** + * Defines the table name to use for this object. + * + * @var string + * @config + */ + private static $table_name = 'SilverWare_CopyrightPage'; + /** * Defines an ancestor class to hide from the admin interface. * diff --git a/src/Pages/DisclaimerPage.php b/src/Pages/DisclaimerPage.php index c26385d..ed99fa6 100644 --- a/src/Pages/DisclaimerPage.php +++ b/src/Pages/DisclaimerPage.php @@ -62,6 +62,14 @@ class DisclaimerPage extends LegalPage */ private static $icon = 'silverware/legals: admin/client/dist/images/icons/DisclaimerPage.png'; + /** + * Defines the table name to use for this object. + * + * @var string + * @config + */ + private static $table_name = 'SilverWare_DisclaimerPage'; + /** * Defines an ancestor class to hide from the admin interface. * diff --git a/src/Pages/LegalPage.php b/src/Pages/LegalPage.php index 16f742d..3230c68 100644 --- a/src/Pages/LegalPage.php +++ b/src/Pages/LegalPage.php @@ -34,6 +34,30 @@ */ class LegalPage extends Page { + /** + * Human-readable singular name. + * + * @var string + * @config + */ + private static $singular_name = 'Legal Page'; + + /** + * Human-readable plural name. + * + * @var string + * @config + */ + private static $plural_name = 'Legal Pages'; + + /** + * Defines the table name to use for this object. + * + * @var string + * @config + */ + private static $table_name = 'SilverWare_LegalPage'; + /** * Maps field names to field types for this object. * diff --git a/src/Pages/PrivacyPage.php b/src/Pages/PrivacyPage.php index 0f89970..19ba8af 100644 --- a/src/Pages/PrivacyPage.php +++ b/src/Pages/PrivacyPage.php @@ -60,6 +60,14 @@ class PrivacyPage extends LegalPage */ private static $icon = 'silverware/legals: admin/client/dist/images/icons/PrivacyPage.png'; + /** + * Defines the table name to use for this object. + * + * @var string + * @config + */ + private static $table_name = 'SilverWare_PrivacyPage'; + /** * Defines an ancestor class to hide from the admin interface. *