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  * Doctrine_Template_I18n
23  *
24  * @package     Doctrine
25  * @subpackage  Template
26  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
27  * @link        www.phpdoctrine.com
28  * @since       1.0
29  * @version     $Revision$
30  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
31  */
32 class Doctrine_Template_I18n extends Doctrine_Template
33 {
34     protected $_translation;
35
36
37     public function __construct(array $options)
38     {
39         $this->_plugin = new Doctrine_I18n($options);
40     }
41     /**
42      * translation
43      * sets or retrieves the current translation language
44      *
45      * @return Doctrine_Record      this object
46      */
47     public function translation($language = null)
48     {
49         $this->_translation = $language;
50     }
51     public function setUp()
52     {
53         $this->_plugin->setOption('table', $this->_table);
54         $name = $this->_table->getComponentName();
55         $className = $this->_plugin->getOption('className');
56
57         if (strpos($className, '%CLASS%') !== false) {
58             $this->_plugin->setOption('className', str_replace('%CLASS%', $name, $className));
59             $className = $this->_plugin->getOption('className');
60         }
61
62         $this->_plugin->buildDefinition($this->_table);
63         
64         $id = $this->_table->getIdentifier();
65
66         $this->hasMany($className . ' as Translation', array('local' => $id, 'foreign' => $id));
67     }
68     public function getI18n()
69     {
70         return $this->_plugin;
71     }
72 }