From 63ebf5ceece4807d718a887c28931a6856d875d6 Mon Sep 17 00:00:00 2001 From: Bockiii Date: Sat, 8 May 2021 12:10:16 +0200 Subject: [PATCH] [BridgeCard] Make HTML default, remove other buttons (#2101) --- lib/BridgeCard.php | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/lib/BridgeCard.php b/lib/BridgeCard.php index 69c67bc4..7bb758d5 100644 --- a/lib/BridgeCard.php +++ b/lib/BridgeCard.php @@ -20,27 +20,6 @@ * @todo Return error if a caller creates an object of this class. */ final class BridgeCard { - /** - * Build a HTML document string of buttons for each of the provided formats - * - * @param array $formats A list of format names - * @return string The document string - */ - private static function buildFormatButtons($formats) { - $buttons = ''; - - foreach($formats as $name) { - $buttons .= '' - . PHP_EOL; - } - - return $buttons; - } - /** * Get the form header for a bridge card * @@ -134,7 +113,7 @@ This bridge is not fetching its content through a secure connection'; } if($isActive) { - $form .= self::buildFormatButtons($formats); + $form .= ''; } else { $form .= 'Inactive'; }