Yml.php 2.25 KB
Newer Older
1
<?php
Jonathan.Wage's avatar
Jonathan.Wage committed
2
require_once('spyc.php');
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

/*
 *  $Id: Yml.php 1080 2007-02-10 18:17:08Z jwage $
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information, see
 * <http://www.phpdoctrine.com>.
 */
23

24 25 26 27
/**
 * Doctrine_Parser_Yml
 *
 * @package     Doctrine
28
 * @subpackage  Parser
29 30 31 32
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @link        www.phpdoctrine.com
 * @since       1.0
 * @version     $Revision: 1080 $
33
 * @author      Jonathan H. Wage <jwage@mac.com>
34 35 36
 */
class Doctrine_Parser_Yml extends Doctrine_Parser
{
37 38 39
    /**
     * dumpData
     *
40
     * Dump an array of data to a specified path or return
41
     * 
42 43 44
     * @param  string $array Array of data to dump to yaml
     * @param  string $path  Path to dump the yaml to
     * @return string $yaml
45 46
     * @return void
     */
47 48
    public function dumpData($array, $path = null)
    {
49
        $spyc = new Doctrine_Spyc();
50
        
51
        $data = $spyc->dump($array, false, false);
52
        
53
        return $this->doDump($data, $path);
54
    }
55

56 57 58 59 60
    /**
     * loadData
     *
     * Load and parse data from a yml file
     * 
61 62
     * @param  string  $path  Path to load yaml data from
     * @return array   $array Array of parsed yaml data
63
     */
64 65
    public function loadData($path)
    {
66
        $contents = $this->doLoad($path);
67

68
        $spyc = new Doctrine_Spyc();
69
        
70
        $array = $spyc->load($contents);
71 72 73
        
        return $array;
    }
74
}