Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.
<?php
/**
< * CFPropertyList < * {@link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists}
> * LICENSE > * > * This file is part of CFPropertyList. > * > * The PHP implementation of Apple's PropertyList can handle XML PropertyLists > * as well as binary PropertyLists. It offers functionality to easily convert > * data between worlds, e.g. recalculating timestamps from unix epoch to apple > * epoch and vice versa. A feature to automagically create (guess) the plist > * structure from a normal PHP data structure will help you dump your data to > * plist in no time. > * > * Copyright (c) 2018 Teclib' > * > * Permission is hereby granted, free of charge, to any person obtaining a copy > * of this software and associated documentation files (the "Software"), to deal > * in the Software without restriction, including without limitation the rights > * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell > * copies of the Software, and to permit persons to whom the Software is > * furnished to do so, subject to the following conditions: > * > * The above copyright notice and this permission notice shall be included in all > * copies or substantial portions of the Software. > * > * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR > * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, > * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE > * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER > * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, > * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE > * SOFTWARE. > * > * ------------------------------------------------------------------------------
* @author Rodney Rehm <rodney.rehm@medialize.de> * @author Christian Kruse <cjk@wwwtech.de>
> * @copyright Copyright © 2018 Teclib
* @package plist
< * @version $Id$
> * @license MIT > * @link https://github.com/TECLIB/CFPropertyList/ > * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists > * ------------------------------------------------------------------------------
*/
>
namespace CFPropertyList;
< /** < * Exception for errors with the PList format < * @author Rodney Rehm <rodney.rehm@medialize.de> < * @author Christian Kruse <cjk@wwwtech.de> < * @package plist < */ < class PListException extends \Exception {
> class PListException extends \Exception > {
}
< <