123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <?php
- class views_plugin_localization extends views_plugin {
-
- var $export_strings = array();
- var $translate = TRUE;
-
- function init(&$view) {
- $this->view = &$view;
- }
-
- function translate($source) {
-
- $source['pre_process'] = $this->invoke_translation_process($source, 'pre');
- $source['translation'] = $this->translate_string($source['value'], $source['keys'], $source['format']);
- $source['post_process'] = $this->invoke_translation_process($source, 'post');
- return $source['translation'];
- }
-
- function translate_string($string, $keys = array(), $format = '') {}
-
- function save($source) {
-
- $source['pre_process'] = $this->invoke_translation_process($source, 'pre');
- $this->save_string($source['value'], $source['keys'], isset($source['format']) ? $source['format'] : '');
- }
-
- function save_string($string, $keys = array(), $format = '') {}
-
- function delete($source) { }
-
- function export($source) { }
-
- function export_render($indent = ' ') { }
-
- function invoke_translation_process(&$value, $op) {
- $return = array();
- $hook = 'translation_' . $op . '_process';
- foreach (module_implements($hook) as $module) {
- $function = $module . '_' . $hook;
- $result = $function($value);
- if (isset($result)) {
- $return[$module] = $result;
- }
- }
- return $return;
- }
- function process_locale_strings($op) {
- $this->view->init_display();
- foreach ($this->view->display as $display_id => $display) {
- $translatable = array();
-
- if (isset($display->display_title)) {
- $translatable[] = array('value' => $display->display_title, 'keys' => array('display_title'));
- }
-
- if (is_object($this->view->display[$display_id]->handler)) {
- $this->view->display[$display_id]->handler->unpack_translatables($translatable);
- }
- foreach ($translatable as $data) {
- $data['keys'] = array_merge(array($this->view->name, $display_id), $data['keys']);
- switch ($op) {
- case 'save':
- $this->save($data);
- break;
- case 'delete':
- $this->delete($data);
- break;
- case 'export':
- $this->export($data);
- break;
- }
- }
- }
- }
- }
|