| Server IP : 209.16.87.222 / Your IP : 216.73.216.24 Web Server : Apache/2.4.68 (Debian) System : Linux 797b534c095b 6.18.38-Unraid #1 SMP PREEMPT_DYNAMIC Mon Jul 6 15:22:03 PDT 2026 x86_64 User : www-data ( 33) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/plugins/uncanny-automator/src/integrations/make/ |
Upload File : |
<?php
namespace Uncanny_Automator;
/**
* Class Add_Make_Integration
*
* @package Uncanny_Automator
*/
class Add_Make_Integration {
use Recipe\Integrations;
/**
* Add_Integration constructor.
*/
public function __construct() {
$this->setup();
}
/**
* Integration Set-up.
*/
protected function setup() {
$this->set_integration( 'MAKE' );
$this->set_name( 'Make' );
$this->set_icon( __DIR__ . '/img/make-icon.svg' );
}
/**
* Explicitly return true because it doesn't depend on any 3rd-party plugin.
*
* @return bool
*/
public function plugin_active() {
return true;
}
}