fix intltext templates - maybe
This commit is contained in:
parent
343fb61bad
commit
b00c900fa2
@ -86,4 +86,25 @@ class FriendicaSmartyEngine implements ITemplateEngine {
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
public function get_intltext_template($file, $root='') {
|
||||
$a = get_app();
|
||||
|
||||
if(file_exists("view/{$a->language}/$s"))
|
||||
$template_file = "view/{$a->language}/$s";
|
||||
elseif(file_exists("view/en/$s"))
|
||||
$template_file = "view/en/$s";
|
||||
else
|
||||
$template_file = theme_include($file,$root);
|
||||
if($template_file) {
|
||||
$template = new FriendicaSmarty();
|
||||
$template->filename = $template_file;
|
||||
|
||||
return $template;
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
@ -540,30 +540,11 @@ function theme_include($file, $root = '') {
|
||||
|
||||
|
||||
function get_intltext_template($s) {
|
||||
global $a;
|
||||
$a = get_app();
|
||||
$t = $a->template_engine();
|
||||
|
||||
if(! isset($a->language))
|
||||
$a->language = 'en';
|
||||
|
||||
$engine = '';
|
||||
if($a->get_template_engine() === 'smarty3')
|
||||
$engine = "/smarty3";
|
||||
|
||||
$file = '';
|
||||
if(file_exists("view/{$a->language}$engine/$s"))
|
||||
$file = "view/{$a->language}$engine/$s";
|
||||
elseif(file_exists("view/en$engine/$s"))
|
||||
$file = "view/en$engine/$s";
|
||||
else
|
||||
$file = "view/tpl/$engine/$s";
|
||||
if($engine === '/smarty3') {
|
||||
$template = new FriendicaSmarty();
|
||||
$template->filename = $file;
|
||||
|
||||
return $template;
|
||||
}
|
||||
else
|
||||
return file_get_contents($file);
|
||||
$template = $t->get_intltext_template($s, $root);
|
||||
return $template;
|
||||
|
||||
}
|
||||
|
||||
|
@ -3,11 +3,11 @@
|
||||
// Set the following for your MySQL installation
|
||||
// Copy or rename this file to .htconfig.php
|
||||
|
||||
$db_host = '$dbhost';
|
||||
$db_port = '$dbport';
|
||||
$db_user = '$dbuser';
|
||||
$db_pass = '$dbpass';
|
||||
$db_data = '$dbdata';
|
||||
$db_host = '{{$dbhost}}';
|
||||
$db_port = '{{$dbport}}';
|
||||
$db_user = '{{$dbuser}}';
|
||||
$db_pass = '{{$dbpass}}';
|
||||
$db_data = '{{$dbdata}}';
|
||||
|
||||
/*
|
||||
* Notice: Many of the following settings will be available in the admin panel
|
||||
@ -25,13 +25,13 @@ $db_data = '$dbdata';
|
||||
// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
|
||||
// It can be changed later and only applies to timestamps for anonymous viewers.
|
||||
|
||||
$default_timezone = '$timezone';
|
||||
$default_timezone = '{{$timezone}}';
|
||||
|
||||
// What is your site name?
|
||||
|
||||
$a->config['system']['baseurl'] = '$siteurl';
|
||||
$a->config['system']['baseurl'] = '{{$siteurl}}';
|
||||
$a->config['system']['sitename'] = "Red Matrix";
|
||||
$a->config['system']['location_hash'] = '$site_id';
|
||||
$a->config['system']['location_hash'] = '{{$site_id}}';
|
||||
|
||||
// Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED.
|
||||
// Be certain to create your own personal account before setting
|
||||
@ -42,7 +42,7 @@ $a->config['system']['location_hash'] = '$site_id';
|
||||
|
||||
$a->config['system']['register_policy'] = REGISTER_OPEN;
|
||||
$a->config['system']['register_text'] = '';
|
||||
$a->config['system']['admin_email'] = '$adminmail';
|
||||
$a->config['system']['admin_email'] = '{{$adminmail}}';
|
||||
|
||||
// Maximum size of an imported message, 0 is unlimited
|
||||
|
||||
@ -54,7 +54,7 @@ $a->config['system']['maximagesize'] = 800000;
|
||||
|
||||
// Location of PHP command line processor
|
||||
|
||||
$a->config['system']['php_path'] = '$phpath';
|
||||
$a->config['system']['php_path'] = '{{$phpath}}';
|
||||
|
||||
// Configure how we communicate with directory servers.
|
||||
// DIRECTORY_MODE_NORMAL = directory client, we will find a directory
|
||||
|
Reference in New Issue
Block a user