/** * FILE: intellilang/intellilang.php * Ini adalah file utama plugin IntelliLang. * * @package IntelliLang */ /* Plugin Name: IntelliLang - Auto Translate Cerdas Plugin URI: https://example.com/intellilang Description: Menerjemahkan konten, slug, dan meta SEO WordPress secara otomatis menggunakan Google Translate API. Termasuk fitur terjemahan massal untuk postingan lama. Version: 2.0.0 Author: Nama Anda Author URI: https://example.com License: GPL v2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Text Domain: intellilang Domain Path: /languages */ // Mencegah akses langsung ke file if ( ! defined( 'ABSPATH' ) ) { exit; } // Definisikan konstanta plugin define( 'INTELLILANG_VERSION', '2.0.0' ); define( 'INTELLILANG_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); // Muat file-file yang diperlukan require_once INTELLILANG_PLUGIN_DIR . 'includes/class-intellilang-api-handler.php'; require_once INTELLILANG_PLUGIN_DIR . 'includes/class-intellilang-post-handler.php'; require_once INTELLILANG_PLUGIN_DIR . 'includes/class-intellilang-seo-handler.php'; require_once INTELLILANG_PLUGIN_DIR . 'includes/class-intellilang-language-switcher.php'; require_once INTELLILANG_PLUGIN_DIR . 'admin/class-intellilang-settings-page.php'; require_once INTELLILANG_PLUGIN_DIR . 'admin/class-intellilang-bulk-translate-page.php'; /** * Fungsi utama untuk menjalankan plugin. */ function intellilang_run() { new IntelliLang_Settings_Page(); new IntelliLang_Bulk_Translate_Page(); new IntelliLang_Post_Handler(); new IntelliLang_Language_Switcher(); } // Jalankan plugin add_action( 'plugins_loaded', 'intellilang_run' );