LangAction.class.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. /**
  3. *
  4. * Urlrule(URL规则)
  5. *
  6. */
  7. if(defined('APP_NAME')!='Ainaphp' && !defined("Ainaphp")) exit("Access Denied");
  8. class LangAction extends AdminbaseAction {
  9. protected $langpath,$lang;
  10. function _initialize()
  11. {
  12. parent::_initialize();
  13. $this->langpath = LANG_PATH.LANG_NAME.'/';
  14. }
  15. function insert() {
  16. $lang_path =LANG_PATH.$_POST['mark'].'/';
  17. $r =dir_copy(LANG_PATH.'cn/',$lang_path);
  18. $name = MODULE_NAME;
  19. $model = D ($name);
  20. if (false === $model->create ()) {
  21. $this->error ( $model->getError () );
  22. }
  23. $id = $model->add();
  24. if ($id !==false) {
  25. $db=D('');
  26. $db = DB::getInstance();
  27. $db->execute("INSERT INTO `aina_config` (`varname`,`info`,`groupid`,`value`,`lang`) VALUES ('site_name','网站名称','2','','".$id."'),
  28. ('site_url','网站网址','2','','".$id."'),
  29. ('logo','网站LOGO','2','./Public/Images/logo.gif','".$id."'),
  30. ('site_email','站点邮箱','2',admin@zifre.top','".$id."'),
  31. ('seo_title','网站标题','2','','".$id."'),
  32. ('seo_keywords','关键词','2','','".$id."'),
  33. ('seo_description','网站简介','2','','".$id."'),
  34. ('member_register','允许新会员注册','3','1','".$id."'),
  35. ('member_emailcheck','新会员注册需要邮件验证','3','0','".$id."'),
  36. ('member_registecheck','新会员注册需要审核','3','1','".$id."'),
  37. ('member_login_verify','注册登陆开启验证码','3','1','".$id."'),
  38. ('member_emailchecktpl','邮件认证模板','3','','".$id."'),
  39. ('member_getpwdemaitpl','密码找回邮件内容','3','','".$id."')
  40. ;");
  41. if(in_array($name,$this->cache_model)) savecache($name);
  42. $jumpUrl = $_POST['forward'] ? $_POST['forward'] : U(MODULE_NAME.'/index');
  43. $this->assign ( 'jumpUrl',$jumpUrl );
  44. $this->success (L('add_ok'));
  45. } else {
  46. $this->error (L('add_error').': '.$model->getDbError());
  47. }
  48. }
  49. function param()
  50. {
  51. $files = glob($this->langpath.'*');
  52. $lang_files=array();
  53. foreach($files as $key => $file) {
  54. //$filename = basename($file);
  55. $filename = pathinfo($file);
  56. $lang_files[$key]['filename'] = $filename['filename'];
  57. $lang_files[$key]['filepath'] = $file;
  58. $temp = explode('_',$lang_files[$key]['filename']);
  59. $lang_files[$key]['name'] = count($temp)>1 ? $temp[0].L('LANG_module') : L('LANG_common') ;
  60. }
  61. $this->assign ( 'id', $id );
  62. $this->assign ( 'lang', LANG_NAME );
  63. $this->assign ( 'files', $lang_files );
  64. $this->display();
  65. }
  66. function editparam()
  67. {
  68. $file= $_REQUEST['file'];
  69. $value = F($file, $value='', $this->langpath);
  70. $this->assign ( 'id', $id );
  71. $this->assign ( 'file', $file );
  72. $this->assign ( 'lang', LANG_NAME );
  73. $this->assign ( 'list', $value );
  74. $this->display();
  75. }
  76. function updateparam()
  77. {
  78. $file= $_REQUEST['file'];
  79. unset($_POST[C('TOKEN_NAME')]);
  80. foreach($_POST as $key=>$r){
  81. if($r)$data[strtoupper($key)]=$r;
  82. }
  83. $r = F($file,$data, $this->langpath);
  84. if($r){
  85. $this->success(L('do_ok'));
  86. }else{
  87. $this->error(L('add_error'));
  88. }
  89. }
  90. }
  91. ?>