Coverage for Doctrine_Template_I18n

Back to coverage report

1 <?php
2 /*
3  *  $Id$
4  *
5  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
6  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
7  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
8  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
9  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
10  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
11  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
12  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
13  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
14  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
15  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16  *
17  * This software consists of voluntary contributions made by many individuals
18  * and is licensed under the LGPL. For more information, see
19  * <http://www.phpdoctrine.com>.
20  */
21
22 /**
23  * Doctrine_Template_I18n
24  *
25  * @package     Doctrine
26  * @subpackage  Template
27  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
28  * @link        www.phpdoctrine.com
29  * @since       1.0
30  * @version     $Revision$
31  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
32  */
33 class Doctrine_Template_I18n extends Doctrine_Template
34 {
35     protected $_translation;
36
37     /**
38      * __construct
39      *
40      * @param string $array 
41      * @return void
42      */
43     public function __construct(array $options)
44     {
45         $this->_plugin = new Doctrine_I18n($options);
46     }
47
48     /**
49      * translation
50      *
51      * sets or retrieves the current translation language
52      *
53      * @return Doctrine_Record      this object
54      */
55     public function translation($language = null)
56     {
57         $this->_translation = $language;
58         
59         return $this->_translation;
60     }
61
62     /**
63      * setUp
64      *
65      * @return void
66      */
67     public function setUp()
68     {
69         $this->_plugin->setOption('table', $this->_table);
70         $name = $this->_table->getComponentName();
71         $className = $this->_plugin->getOption('className');
72
73         if (strpos($className, '%CLASS%') !== false) {
74             $this->_plugin->setOption('className', str_replace('%CLASS%', $name, $className));
75             $className = $this->_plugin->getOption('className');
76         }
77
78         $this->_plugin->buildDefinition($this->_table);
79         
80         $id = $this->_table->getIdentifier();
81
82         $this->hasMany($className . ' as Translation', array('local' => $id[0], 'foreign' => $id[0]));
83     }
84     
85     /**
86      * getI18n
87      *
88      * @return void
89      */
90     public function getI18n()
91     {
92         return $this->_plugin;
93     }
94 }