'',
];
}
public function get_integrations() : array {
$usage_integrations_text = '';
$integrations = Module::instance()->get_integrations_usage();
foreach ( array_keys( $integrations ) as $integration ) {
$usage_integrations_text .= '
' . $integration . ' | ' . esc_html__( 'Active', 'elementor-pro' ) . ' |
';
}
return [
'value' => $usage_integrations_text,
];
}
public function get_raw_integrations() : array {
$usage_integrations = PHP_EOL;
$integrations = Module::instance()->get_integrations_usage();
foreach ( array_keys( $integrations ) as $integration ) {
$usage_integrations .= "\t" . $integration . ': ' . esc_html__( 'Active', 'elementor-pro' ) . PHP_EOL;
}
return [
'value' => $usage_integrations,
];
}
}