Author
Ascoos OS is a PHP Web 5.0 kernel for building decentralized web and IoT applications.
With ~4,500 encrypted classes, it provides a secure, modular framework powered by CiC (Cms-in-Cms) technology and the Extras Classes Manager for dynamic loading of third-party libraries, eliminating API dependencies.
It supports a wide range of categories, including:
- Artificial Intelligence (with NLP support)
- Macro Engine (with DSL/AST support)
- Threads, Tasks, Stacks, and Queues
- Graphics and Image Processing
- Web Services and APIs
- IoT and Hardware (Arduino, Raspberry Pi, GNSS)
- Geography and Geolocation
- Health and Data Analysis
- File Management and Torrents
- Cryptography and Security
- Electronics (RLC/FIR filters)
- And more...
Please check this example script to learn how to build an automated decision engine using PHP AI library classes.
<?php
/**
* @ASCOOS-NAME : Ascoos OS
* @ASCOOS-VERSION : 26.0.0
* @ASCOOS-SUPPORT : [email protected]
* @ASCOOS-BUGS : https://issues.ascoos.com
*
* @CASE-STUDY : semantic_macro_profiler.php
* @fileNo : ASCOOS-OS-CASESTUDY-SEC02235
*
* @desc <English> Creates a semantic macro profiler using DSL, NLP, and AI.
* Analyzes editorial content, predicts macro execution,
* visualizes semantic scores, and stores results.
* @desc <Greek> ?????????? semantic macro profiler ?? ????? DSL, NLP ??? AI.
* ??????? ?????????? ???????????, ????????? ???????? macro,
* ??????????? semantic scores ??? ?????????? ????????????.
*
* @since PHP 8.2.0
*/
declare(strict_types=1);
// -----------------------------------------------------------------------------
// <English> Import required Ascoos OS classes
// <Greek> ???????? ???????????? ??????? ??? Ascoos OS
// -----------------------------------------------------------------------------
use ASCOOS\OS\Kernel\{
Parsers\DSL\AbstractDslAstBuilder,
Parsers\DSL\AstMacroTranslator,
AI\NLP\TLanguageProcessingAIHandler,
AI\NeuralNet\TNeuralNetworkHandler,
Arrays\Events\TEventHandler,
Graphs\Charts\TChartsHandler,
Core\Errors\Messages\TErrorMessageHandler,
Files\TFilesHandler
};
global $AOS_TMP_DATA_PATH, $AOS_FONTS_PATH, $utf8;
// -----------------------------------------------------------------------------
// <English> Define configuration properties
// <Greek> ??????? ????????? ??? ?????????? ??? ?????????
// -----------------------------------------------------------------------------
$properties = [
'file' => [
'baseDir' => $AOS_TMP_DATA_PATH . '/semantic_macro_profiler',
'quotaSize' => 1000000000 // 1GB quota
],
'LineChart' => [
'width' => 900,
'height' => 500,
'fontPath' => $AOS_FONTS_PATH . '/Murecho/Murecho-Regular.ttf',
'backgroundColorIndex' => 1,
'lineColorIndex' => 4,
'axisColorIndex' => 0
]
];
// -----------------------------------------------------------------------------
// <English> Initialize handlers
// <Greek> ???????????? ????????? NLP, AI, ???????, ??????????, ?????????, ?????????
// -----------------------------------------------------------------------------
$nlp = new TLanguageProcessingAIHandler();
$ai = new TNeuralNetworkHandler();
$files = new TFilesHandler([], $properties['file']);
$chart = new TChartsHandler([], $properties['LineChart']);
$event = new TEventHandler([], $properties);
$error = new TErrorMessageHandler('el-GR', $properties);
// -----------------------------------------------------------------------------
// <English> Define DSL macro script
// <Greek> ??????? macro script ?? DSL
// -----------------------------------------------------------------------------
$dsl = <<<DSL
WHEN sentiment = negative AND topic = "security" THEN
TAG "risk"
NOTIFY "admin"
EXECUTE "audit_macro"
DSL;
// -----------------------------------------------------------------------------
// <English> NLP analysis
// <Greek> ??????? ???????????? ?? NLP ??? ?????????? ??? ????????
// -----------------------------------------------------------------------------
$text = "The system shows vulnerabilities in authentication and encryption. Immediate review is required.";
$sentiment = $nlp->naiveBayesSentiment($text);
$concepts = $nlp->conceptActivationVector(['security', 'vulnerabilities', 'authentication'], [$text]);
// -----------------------------------------------------------------------------
// <English> AI prediction
// <Greek> ?????????? ?????????? ??????? ??? ???????? ????????? macro
// -----------------------------------------------------------------------------
$ai->compile([
['input' => 3, 'output' => 4, 'activation' => 'relu'],
['input' => 4, 'output' => 1, 'activation' => 'sigmoid']
]);
$ai->fit([[0.9, 0.2, 0.8], [0.3, 0.7, 0.4]], [1, 0], epochs: 500, lr: 0.01);
$score = $ai->predictNetwork([[0.8, 0.3, 0.9]])[0];
// -----------------------------------------------------------------------------
// <English> DSL ? AST ? Macro
// <Greek> ????????? DSL ?? AST ??? ?????????? macro container
// -----------------------------------------------------------------------------
$astBuilder = new class extends AbstractDslAstBuilder {};
$ast = $astBuilder->buildAst($dsl);
$translator = new class([
'TAG' => fn(string $tag) => print("?? Tagged: $tag\n"),
'NOTIFY' => fn(string $who) => print("? Notification sent to: $who\n"),
'EXECUTE' => fn(string $macro) => print("? Executing macro: $macro\n"),
'sentiment'=> fn() => $sentiment,
'topic' => fn() => in_array('security', $concepts) ? 'security' : 'other'
]) extends AstMacroTranslator {};
$macroContainer = $translator->translateAst($ast);
// -----------------------------------------------------------------------------
// <English> Semantic profiling
// <Greek> ?????????? semantic profile ?? NLP ??? AI ????????
// -----------------------------------------------------------------------------
$profile = [
'sentiment' => $sentiment,
'topic' => $concepts,
'ai_score' => $score,
'triggered' => $score > 0.5
];
// -----------------------------------------------------------------------------
// <English> Save semantic profile
// <Greek> ?????????? semantic profile ?? JSON ??????
// -----------------------------------------------------------------------------
$folder = $properties['file']['baseDir'];
$files->createFolder($folder);
$files->writeToFileWithCheck(
json_encode($profile, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE),
$folder . '/semantic_profile.json'
);
// -----------------------------------------------------------------------------
// <English> Generate semantic graph
// <Greek> ?????????? ?????????? ??? AI score ??? ??????????
// -----------------------------------------------------------------------------
$chart->setArray([$score, ($sentiment === 'negative') ? 1 : 0], ['charts']);
$chart->LineChart($folder . '/semantic_profile.png');
// -----------------------------------------------------------------------------
// <English> Execute macro if AI score passes threshold
// <Greek> ???????? macro ?? ? ???????? AI ????? ??????
// -----------------------------------------------------------------------------
if ($score > 0.5) {
$macroContainer->executeIfTrue();
$event->register('macro_triggered', 'semantic_profiler', fn() =>
$event->logger->log('Macro triggered based on semantic profile', $event::DEBUG_LEVEL_INFO)
);
$event->trigger('macro_triggered', 'semantic_profiler');
} else {
print("?? Macro skipped due to low AI score\n");
}
// -----------------------------------------------------------------------------
// <English> Free resources
// <Greek> ???????????? ????? ??? ?????????
// -----------------------------------------------------------------------------
$error->Free($error);
$chart->Free($chart);
$event->Free($event);
$ai->Free($ai);
$nlp->Free($nlp);
?>
Ascoos OS is a PHP-based Web 5.0 core under development.
Learn how Ascoos OS implements Web 5.0 in Wollstonecraft in Web 5.0 and Ascoos OS.
For details about our technologies and the Web 5.0 philosophy, see the Glossary and Ascoos Meets Web 5.0.
Feedback: CONTRIBUTING.md | [email protected].
File | Role | Description | ||
---|---|---|---|---|
Files folder imagedocs (1 directory) | ||||
Files folder imageexamples (3 directories) | ||||
Accessible without login Plain text file ARCHITECTURE-GR.md | Data | Auxiliary data | ||
Accessible without login Plain text file ARCHITECTURE.md | Data | Auxiliary data | ||
Accessible without login Plain text file CODE_OF_CONDUCT-GR.md | Data | Auxiliary data | ||
Accessible without login Plain text file CODE_OF_CONDUCT.md | Data | Auxiliary data | ||
Accessible without login Plain text file COMPARE-GR.md | Data | Auxiliary data | ||
Accessible without login Plain text file COMPARE.md | Data | Auxiliary data | ||
Accessible without login Plain text file CONTRIBUTING-GR.md | Data | Auxiliary data | ||
Accessible without login Plain text file CONTRIBUTING.md | Data | Auxiliary data | ||
Accessible without login Plain text file CREDITS-GR.md | Data | Auxiliary data | ||
Accessible without login Plain text file CREDITS.md | Data | Auxiliary data | ||
Accessible without login Plain text file FAQ-GR.md | Data | Auxiliary data | ||
Accessible without login Plain text file FAQ.md | Data | Auxiliary data | ||
Accessible without login Plain text file GLOSSARY-GR.md | Doc. | Documentation | ||
Accessible without login Plain text file GLOSSARY.md | Doc. | Documentation | ||
Accessible without login Plain text file ISSUES-GR.md | Data | Auxiliary data | ||
Accessible without login Plain text file ISSUES.md | Data | Auxiliary data | ||
Accessible without login Plain text file LICENSE-GR.md | Lic. | License text | ||
Accessible without login Plain text file LICENSE.md | Lic. | License text | ||
Accessible without login Plain text file MANIFEST-GR.md | Data | Auxiliary data | ||
Accessible without login Plain text file MANIFEST.md | Data | Auxiliary data | ||
Accessible without login Plain text file README-GR.md | Doc. | Documentation | ||
Accessible without login Plain text file README.md | Doc. | Documentation | ||
Accessible without login Plain text file ROADMAP-GR.md | Data | Auxiliary data | ||
Accessible without login Plain text file ROADMAP.md | Data | Auxiliary data | ||
Accessible without login Plain text file SECURITY-GR.md | Data | Auxiliary data | ||
Accessible without login Plain text file SECURITY.md | Data | Auxiliary data | ||
Accessible without login Plain text file SUPPORT-GR.md | Data | Auxiliary data | ||
Accessible without login Plain text file SUPPORT.md | Data | Auxiliary data | ||
Accessible without login Plain text file WEB5-GR.md | Doc. | Documentation | ||
Accessible without login Plain text file WEB5.md | Doc. | Documentation |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagekernel (2 files, 2 directories) |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagecore (2 directories) | ||||
Files folder imagenet (1 directory) | ||||
Accessible without login Plain text file CLASS-GR.md | Data | Auxiliary data | ||
Accessible without login Plain text file CLASS.md | Data | Auxiliary data |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageTErrorMessageHandler (2 files) | ||||
Files folder imageTObject (2 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file README-GR.md | Doc. | Documentation |
Accessible without login Plain text file README.md | Doc. | Documentation |
File | Role | Description |
---|---|---|
Accessible without login Plain text file README-GR.md | Doc. | Documentation |
Accessible without login Plain text file README.md | Doc. | Documentation |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageTFTPHandler (2 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file README-GR.md | Doc. | Documentation |
Accessible without login Plain text file README.md | Doc. | Documentation |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagecase-studies (2 files, 20 directories) | ||||
Files folder imageextras (1 directory) | ||||
Files folder imagekernel (2 directories) |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageai (3 directories) | ||||
Files folder imageapi (1 directory) | ||||
Files folder imageauth (1 directory) | ||||
Files folder imageautomation (1 directory) | ||||
Files folder imagebarcodes (1 directory) | ||||
Files folder imageelectronics (1 directory) | ||||
Files folder imageengineering (1 directory) | ||||
Files folder imagefiles (2 directories) | ||||
Files folder imagehealth (2 directories) | ||||
Files folder imageintegration (1 directory) | ||||
Files folder imageiot (1 directory) | ||||
Files folder imagelocation (1 directory) | ||||
Files folder imagemacros (1 directory) | ||||
Files folder imagenet (1 directory) | ||||
Files folder imagescience (1 directory) | ||||
Files folder imagesecurity (1 directory) | ||||
Files folder imagesports (1 directory) | ||||
Files folder imagesystem (4 directories) | ||||
Files folder imageui (1 directory) | ||||
Files folder imagewebsites (2 directories) | ||||
Accessible without login Plain text file README-GR.md | Doc. | Documentation | ||
Accessible without login Plain text file README.md | Doc. | Documentation |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagemacro_decision_engine (3 files) | ||||
Files folder imageneural (1 directory) | ||||
Files folder imagesemantic_macro_profiler (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file macro_decision_engine-GR.md | Data | Auxiliary data |
Accessible without login Plain text file macro_decision_engine.md | Doc. | Documentation |
Accessible without login Plain text file macro_decision_engine.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageneural_workflow_composer (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file neural_workflow_composer-GR.md | Doc. | Documentation |
Accessible without login Plain text file neural_workflow_composer.md | Doc. | Documentation |
Accessible without login Plain text file neural_workflow_composer.php | Example | Neural Workflow Composer: Macro Execution via Neural Prediction This case study demonstrates how **Ascoos OS** can intelligently execute macros based on system history using neural networks. The system learns from past performance metrics and predicts optimal macro actions. |
File | Role | Description |
---|---|---|
Accessible without login Plain text file semantic_macro_profiler-GR.md | Doc. | Documentation |
Accessible without login Plain text file semantic_macro_profiler.md | Doc. | Documentation |
Accessible without login Plain text file semantic_macro_profiler.php | Example | This case study demonstrates how Ascoos OS can orchestrate macro execution using semantic analysis, DSL scripting, NLP, and AI prediction. The system analyzes editorial content, detects sentiment and topic, translates DSL into macros, and executes them based on neural network scoring. |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageapi_batch_orchestrator (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file api_batch_orchestrator-GR.md | Data | Auxiliary data |
Accessible without login Plain text file api_batch_orchestrator.md | Data | Auxiliary data |
Accessible without login Plain text file api_batch_orchestrator.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagevalidated_login_flow (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file validated_login_flow-GR.md | Data | User Credential Validation and Authentication with Event Logging |
Accessible without login Plain text file validated_login_flow.md | Data | User Credential Validation and Authentication with Event Logging |
Accessible without login Plain text file validated_login_flow.php | Example | User Credential Validation and Authentication with Event Logging |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagemacros (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file macro_workflow_engine-GR.md | Data | Auxiliary data |
Accessible without login Plain text file macro_workflow_engine.md | Data | Auxiliary data |
Accessible without login Plain text file macro_workflow_engine.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagecreation (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file barcode_creation-GR.md | Data | Auxiliary data |
Accessible without login Plain text file barcode_creation.md | Data | Auxiliary data |
Accessible without login Plain text file barcode_creation.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageaudio_rlc_fir_processing (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file audio_rlc_fir_processing-GR.md | Doc. | Documentation |
Accessible without login Plain text file audio_rlc_fir_processing.md | Doc. | Documentation |
Accessible without login Plain text file audio_rlc_fir_processing.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageforces (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file engineering_forces-GR.md | Data | Auxiliary data |
Accessible without login Plain text file engineering_forces.md | Data | Auxiliary data |
Accessible without login Plain text file engineering_forces.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagequota_file_cleaner (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file quota_file_cleaner-GR.md | Doc. | Documentation |
Accessible without login Plain text file quota_file_cleaner.md | Doc. | Documentation |
Accessible without login Plain text file quota_file_cleaner.php | Example | Example script |
File | Role | Description |
---|---|---|
Accessible without login Plain text file encrypted_image_archiver-GR.md | Data | Auxiliary data |
Accessible without login Plain text file encrypted_image_archiver.md | Data | Auxiliary data |
Accessible without login Plain text file encrypted_image_archiver.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageappointments (3 files) | ||||
Files folder imagemedical (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file appointment_scheduler-GR.md | Data | Auxiliary data |
Accessible without login Plain text file appointment_scheduler.md | Data | Auxiliary data |
Accessible without login Plain text file appointment_scheduler.php | Example | Example script |
File | Role | Description |
---|---|---|
Accessible without login Plain text file medical_data_management-GR.md | Data | Auxiliary data |
Accessible without login Plain text file medical_data_management.md | Data | Auxiliary data |
Accessible without login Plain text file medical_data_management.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagelaravel (1 directory) |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageautoload (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file laravel_autoload-GR.md | Doc. | Documentation |
Accessible without login Plain text file laravel_autoload.md | Doc. | Documentation |
Accessible without login Plain text file laravel_autoload.php | Example | Laravel Integration in Ascoos OS |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagearduino (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file arduino_monitoring-GR.md | Data | Auxiliary data |
Accessible without login Plain text file arduino_monitoring.md | Data | Auxiliary data |
Accessible without login Plain text file arduino_monitoring.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageweather (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file microapp_geo_weather-GR.md | Data | Auxiliary data |
Accessible without login Plain text file microapp_geo_weather.md | Data | Auxiliary data |
Accessible without login Plain text file microapp_geo_weather.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagesemantic_macro_trigger (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file semantic_macro_trigger-GR.md | Doc. | Documentation |
Accessible without login Plain text file semantic_macro_trigger.md | Doc. | Documentation |
Accessible without login Plain text file semantic_macro_trigger.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagesockets (1 directory) |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagewebsocket_logger (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file websocket_logger-GR.md | Doc. | Documentation |
Accessible without login Plain text file websocket_logger.md | Doc. | Documentation |
Accessible without login Plain text file websocket_logger.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagephysics (1 directory) |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageorbital_simulation (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file orbital_simulation-GR.md | Doc. | Documentation |
Accessible without login Plain text file orbital_simulation.md | Doc. | Documentation |
Accessible without login Plain text file orbital_simulation.php | Example | Orbital Simulation of a Satellite Around Earth This case study demonstrates how Ascoos OS can simulate a satellite in circular orbit around Earth. It calculates key physical quantities and stores the results in JSON, while also generating visual output. |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageheaders (1 directory) |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagesecurity_header_authentication_management (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file security_header_au...on_management-GR.md | Doc. | Advanced Security Header Management with Authentication |
Accessible without login Plain text file security_header_au...ation_management.md | Doc. | Advanced Security Header Management with Authentication |
Accessible without login Plain text file security_header_au...tion_management.php | Example | Advanced Security Header Management with Authentication |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagesentiment_analysis (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file fcbarcelona_sentiment_analysis-GR.md | Data | Auxiliary data |
Accessible without login Plain text file fcbarcelona_sentiment_analysis.md | Data | Auxiliary data |
Accessible without login Plain text file fcbarcelona_sentiment_analysis.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagecommunication (3 files) | ||||
Files folder imagedashboard (3 files) | ||||
Files folder imagemonitoring (3 files) | ||||
Files folder imageperformance (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file threaded_notification_dispatcher-GR.md | Data | Auxiliary data |
Accessible without login Plain text file threaded_notification_dispatcher.md | Data | Auxiliary data |
Plain text file threaded_notification_dispatcher.php | Class | Class source |
File | Role | Description |
---|---|---|
Accessible without login Plain text file system_alert_dashboard-GR.md | Data | Auxiliary data |
Accessible without login Plain text file system_alert_dashboard.md | Data | Auxiliary data |
Accessible without login Plain text file system_alert_dashboard.php | Example | Example script |
File | Role | Description |
---|---|---|
Accessible without login Plain text file system_monitoring_backup-GR.md | Data | Auxiliary data |
Accessible without login Plain text file system_monitoring_backup.md | Data | Auxiliary data |
Accessible without login Plain text file system_monitoring_backup.php | Example | Example script |
File | Role | Description |
---|---|---|
Accessible without login Plain text file thread_load_balancer-GR.md | Data | Auxiliary data |
Accessible without login Plain text file thread_load_balancer.md | Data | Auxiliary data |
Accessible without login Plain text file thread_load_balancer.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageui_event_binding (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file ui_event_binding-GR.md | Data | Auxiliary data |
Accessible without login Plain text file ui_event_binding.md | Data | Auxiliary data |
Accessible without login Plain text file ui_event_binding.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageapache_optimization (3 files) | ||||
Files folder imagelinguistic_analysis (3 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file website_monitoring..._optimization-GR.md | Doc. | Website Monitoring with Linguistic Analysis and Apache Optimization |
Accessible without login Plain text file website_monitoring...che_optimization.md | Doc. | Website Monitoring with Linguistic Analysis and Apache Optimization |
Accessible without login Plain text file website_monitoring...he_optimization.php | Example | Website Monitoring with Linguistic Analysis and Apache Optimization |
File | Role | Description |
---|---|---|
Accessible without login Plain text file website_linguistic_analysis-GR.md | Data | Auxiliary data |
Accessible without login Plain text file website_linguistic_analysis.md | Data | Auxiliary data |
Accessible without login Plain text file website_linguistic_analysis.php | Example | Example script |
File | Role | Description | ||
---|---|---|---|---|
Files folder imagetorrents (1 directory) |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageTTorrentFileHandler (4 files) |
File | Role | Description |
---|---|---|
Accessible without login HTML file index-gr.html | Doc. | Documentation |
Accessible without login HTML file index.html | Doc. | Documentation |
Accessible without login Plain text file README-GR.md | Doc. | Documentation |
Accessible without login Plain text file README.md | Doc. | Documentation |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageTObject (13 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file example1.php | Example | Example script |
Plain text file invokeMethod.php | Class | Class source |
Plain text file isCallableMethod.php | Class | Class source |
Accessible without login Plain text file isExecutable.php | Example | Example script |
Accessible without login Plain text file isPropertyModified.php | Example | Example script |
Plain text file lockProperties.php | Class | Class source |
Accessible without login Plain text file mergeProperties.php | Example | Example script |
Accessible without login Plain text file Properties.php | Example | Example script |
Accessible without login Plain text file PropertySnapshot.php | Example | Example script |
Accessible without login Plain text file README-GR.md | Doc. | Documentation |
Accessible without login Plain text file README.md | Doc. | Documentation |
Accessible without login Plain text file resetProperties.php | Example | Example script |
Plain text file unlockProperties.php | Class | Class source |
File | Role | Description | ||
---|---|---|---|---|
Files folder imageTFTPHandler (33 files) |
File | Role | Description |
---|---|---|
Accessible without login Plain text file asyncDownloadFile.php | Example | Example script |
Accessible without login Plain text file asyncUploadFile.php | Example | Example script |
Accessible without login Plain text file authenticateWithKey.php | Example | Example script |
Accessible without login Plain text file bulkDownloadFiles.php | Example | Example script |
Accessible without login Plain text file bulkUploadFiles.php | Example | Example script |
Accessible without login Plain text file cacheFileList.php | Example | Example script |
Accessible without login Plain text file changeDirectory.php | Example | Example script |
Accessible without login Plain text file compressFile.php | Example | Example script |
Accessible without login Plain text file connect.php | Example | Example script |
Accessible without login Plain text file createDirectory.php | Example | Example script |
Accessible without login Plain text file decompressFile.php | Example | Example script |
Accessible without login Plain text file deleteDirectory.php | Example | Example script |
Accessible without login Plain text file deleteFile.php | Example | Example script |
Accessible without login Plain text file disconnect.php | Example | Example script |
Accessible without login Plain text file downloadFile.php | Example | Example script |
Accessible without login Plain text file enablePassiveMode.php | Example | Example script |
Accessible without login Plain text file generateCsrfToken.php | Example | Example script |
Accessible without login Plain text file getCurrentDirectory.php | Example | Example script |
Accessible without login Plain text file getFilePermissions.php | Example | Example script |
Accessible without login Plain text file getTransferStats.php | Example | Example script |
Accessible without login Plain text file listDirectory.php | Example | Example script |
Accessible without login Plain text file logActivity.php | Example | Example script |
Accessible without login Plain text file login.php | Example | Example script |
Accessible without login Plain text file monitorTransferProgress.php | Example | Example script |
Accessible without login Plain text file README-GR.md | Doc. | Documentation |
Accessible without login Plain text file README.md | Doc. | Documentation |
Accessible without login Plain text file reconnect.php | Example | Example script |
Accessible without login Plain text file restoreFileListFromCache.php | Example | Example script |
Accessible without login Plain text file restoreSession.php | Example | Example script |
Accessible without login Plain text file saveSession.php | Example | Example script |
Accessible without login Plain text file setFilePermissions.php | Example | Example script |
Accessible without login Plain text file uploadFile.php | Example | Example script |
Accessible without login Plain text file validateCsrfToken.php | Example | Example script |
Add link image If you know an application of this package, send a message to the author to add a link here.
Class | Why it is needed | Dependency |
---|---|---|
AFW Examples | The version 26 is based on Ascoos OS | Conditional |
Ascoos CMS Online Users | The version 26 is based on Ascoos OS | Conditional |
ASCOOS CMS Popular Contents | The version 26 is based on Ascoos OS | Conditional |
Ascoos Framework | The version 26 is based on Ascoos OS | Conditional |
AWES Info | The version 26 is based on Ascoos OS | Conditional |
Background Selector | The version 26 is based on Ascoos OS | Conditional |
Comfor PHP Discussion Forum Latest | The version 26 is based on Ascoos OS | Conditional |
converter-toml | The version 26 is based on Ascoos OS | Conditional |
Drives Info | The version 26 is based on Ascoos OS | Conditional |
Job Announcements | The version 26 is based on Ascoos OS | Conditional |
jsql | The version 26 is based on Ascoos OS | Required |
More Author Articles | The version 26 is based on Ascoos OS | Conditional |
PHP Animal | The version 26 is based on Ascoos OS | Conditional |
PHP Article Editor Block | The version 26 is based on Ascoos OS | Conditional |
PHP Classes Latest | The version 26 is based on Ascoos OS | Conditional |
PHP Easter Date in the Orthodox Calendar | The version 26 is based on Ascoos OS | Conditional |
PHP Games PEGI | The version 26 is based on Ascoos OS | Conditional |
PHP Social Share Buttons for ASCOOS | The version 26 is based on Ascoos OS | Conditional |
PHP Sourceforge Badges | The version 26 is based on Ascoos OS | Conditional |
PHP Timezone Select List | The version 26 is based on Ascoos OS | Conditional |
PHPClasses Feed Viewer | The version 26 is based on Ascoos OS | Conditional |
Scroll to Top | The version 26 is based on Ascoos OS | Conditional |
TEconomicsHandler | The version 26 is based on Ascoos OS | Conditional |
TMathsHandler | The version 26 is based on Ascoos OS | Conditional |
Up Previous Contents ASCOOS CMS Related Articles | The version 26 is based on Ascoos OS | Conditional |