blob: d2cb1dac5328f03c4aa62d1a3b3d55bea87167d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<?php
class LibertyTranslations extends BitBase {
function LibertyTranslations( $pContentId = NULL ) {
$this->mContentId = $pContentId;
LibertyBase::LibertyBase();
}
function getContentTranslations() {
global $gBitSystem;
$ret = array();
if( @BitBase::verifyId( $this->mContentId ) ) {
$query = "SELECT lc.`content_id`, lc.`title`, lc.`lang_code`, ictm.`translation_id`
FROM `".BIT_DB_PREFIX."liberty_content` lc
LEFT OUTER JOIN `".BIT_DB_PREFIX."i18n_content_trans_map` ictm ON( lc.`content_id`=ictm.`content_id` )
WHERE ictm.`content_id`=?";
$result = $this->mDb->query( $query, array( $this->mContentId ) );
while( $aux = $result->fetchRow() ) {
if( !empty( $contentTypes[$aux['content_type_guid']] ) ) {
$ret[$aux['lang_code']] = $aux;
}
}
}
return $ret;
}
}
// ================== service functions ==================
// we should force the preview stuff to preview the original code
function translation_content_edit( &$pObject, &$pParamHash ) {
global $gBitLanguage, $gBitSmarty, $gBitUser;
$trans = new LibertyTranslations( $pObject->mContentId );
$translationId = NULL;
$translations = $trans->getContentTranslations();
foreach( $gBitLanguage->mLanguageList as $lang_code => $language ) {
$translationsList[$lang_code] = $language;
if( !empty( $translations[$lang_code]['content_id'] ) ) {
$translationsList[$lang_code]['content_id'] = $translations[$lang_code]['content_id'];
$translationsList[$lang_code]['title'] = $translations[$lang_code]['title'];
$translationId = $translations[$lang_code]['translation_id'];
}
}
$gBitSmarty->assign( 'translationsList', $translationsList );
$gBitSmarty->assign( 'translationId', $translationId );
}
// store the content
function translation_content_store() {
// we need a parameter on store that we can insert something in liberty_content.lang_code
}
?>
|