This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 103a10426c3efc7c275a93ee2a4102665ec61efd Mon Sep 17 00:00:00 2001 | |
| From: Mohamed Bermaki <simobermaki@gmail.com> | |
| Date: Wed, 26 Nov 2025 12:39:48 +0100 | |
| Subject: [PATCH] Feature: AI Rewriter | |
| --- | |
| app/browser/preload.js | 5 +- | |
| app/browser/tools/aiRewriter.js | 261 ++++++++++++++++++++++++++++++++ | |
| app/index.js | 94 +++++++++++- | |
| app/security/ipcValidator.js | 3 +- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| id: migrate_paginas | |
| label: Archivo de Migracion del tipo de contenido Paginas | |
| migration_tags: | |
| - content_types | |
| source: | |
| plugin: url | |
| data_fetcher_plugin: file | |
| data_parser_plugin: json | |
| urls: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| id: migrate_users | |
| label: 'Users' | |
| source: | |
| plugin: users | |
| key: migrate | |
| process: | |
| uid: uid | |
| name: name | |
| mail: mail | |
| pass: pass |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Drupal\MODULE_NAME\Plugin\migrate\source; | |
| use Drupal\migrate\Annotation\MigrateSource; | |
| use Drupal\migrate\Plugin\migrate\source\SqlBase; | |
| use Drupal\migrate\Row; | |
| /** | |
| * Minimalistic example for a SqlBase source plugin. |