Jake Vanderwerf
4 days ago 0afb2c0046b55c123eafb4ab9ee77efa68d12463
inc/registrar/config/Integration.php
@@ -2,7 +2,7 @@
namespace JVBase\registrar\config;
use JVBase\registrar\Registrar;
use JVBase\utility\Features;
use JVBase\base\Site;
if (!defined('ABSPATH')) {
   exit;
@@ -31,7 +31,7 @@
   public function __construct(string $service) {
      if (!Features::hasIntegration($service)) {
      if (!Site::hasIntegration($service)) {
         error_log('Could not link with integration, as it is not enabled: '.$service);
         return;
      }
@@ -47,9 +47,9 @@
    * @param string $content must match what integration expects
    * @return self
    */
   public function setContent_type(string $content):self
   public function setContentType(string $content):self
   {
      $allowed = JVB()->connect($this->service_name)->allowedContent();
      $allowed = JVB()->connect($this->service_name)->getAllowedContent();
      if (!in_array($content, $allowed)) {
         error_log($this->service_name.' Connection does not support this content: '.$content);
         return $this;