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     public function __construct(array $options)
39     {
40         $this->_plugin = new Doctrine_I18n($options);
41     }
42
43     /**
44      * translation
45      * sets or retrieves the current translation language
46      *
47      * @return Doctrine_Record      this object
48      */
49     public function translation($language = null)
50     {
51         $this->_translation = $language;
52     }
53     public function setUp()
54     {
55         $this->_plugin->setOption('table', $this->_table);
56         $name = $this->_table->getComponentName();
57         $className = $this->_plugin->getOption('className');
58
59         if (strpos($className, '%CLASS%') !== false) {
60             $this->_plugin->setOption('className', str_replace('%CLASS%', $name, $className));
61             $className = $this->_plugin->getOption('className');
62         }
63
64         $this->_plugin->buildDefinition($this->_table);
65         
66         $id = $this->_table->getIdentifier();
67
68         $this->hasMany($className . ' as Translation', array('local' => $id, 'foreign' => $id));
69     }
70     public function getI18n()
71     {
72         return $this->_plugin;
73     }
74 }