├── README └── tp ├── admin.php ├── admin ├── Common │ └── common.php ├── Conf │ ├── config.php │ └── tags.php ├── Lang │ └── zh-cn │ │ ├── ad.php │ │ ├── admin.php │ │ ├── article.php │ │ ├── articlecate.php │ │ ├── common.php │ │ ├── flink.php │ │ ├── group.php │ │ ├── nav.php │ │ ├── node.php │ │ ├── role.php │ │ ├── sellercate.php │ │ ├── sellerlist.php │ │ ├── setting.php │ │ ├── user.php │ │ ├── wfdefination.php │ │ ├── wfnode.php │ │ └── wfprocess.php ├── Lib │ ├── Action │ │ ├── AdAction.class.php │ │ ├── AdboardAction.class.php │ │ ├── AdminAction.class.php │ │ ├── ArticleAction.class.php │ │ ├── ArticleCateAction.class.php │ │ ├── BaseAction.class.php │ │ ├── CacheAction.class.php │ │ ├── FlinkAction.class.php │ │ ├── GroupAction.class.php │ │ ├── IndexAction.class.php │ │ ├── NavAction.class.php │ │ ├── NodeAction.class.php │ │ ├── PublicAction.class.php │ │ ├── RoleAction.class.php │ │ ├── SellerCateAction.class.php │ │ ├── SellerListAction.class.php │ │ ├── SettingAction.class.php │ │ ├── UserAction.class.php │ │ ├── WFDefinationAction.class.php │ │ ├── WFNodeAction.class.php │ │ ├── WFProcessAction.class.php │ │ ├── WFProposalHandlerAction.class.php │ │ ├── WorkFlowAction.class.php │ │ └── WorkFlowServiceAction.class.php │ └── TagLib │ │ └── TagLibTpl.class.php ├── Runtime │ ├── Cache │ │ ├── 4c18d5952d0dbf1eedb8a1ec796fa788.php │ │ ├── 6e0a2ffbae5fbbcd23e7c3063df8e324.php │ │ └── f416cf810dea4d3f6272237cf732402f.php │ └── Logs │ │ └── 13_12_26.log └── Tpl │ ├── Ad │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Adboard │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Admin │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Article │ ├── add.html │ ├── edit.html │ └── index.html │ ├── ArticleCate │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Cache │ └── index.html │ ├── Flink │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Group │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Index │ └── index.html │ ├── Nav │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Node │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Public │ ├── error.html │ ├── footer.html │ ├── header.html │ ├── left.html │ ├── login.html │ ├── main.html │ ├── search.html │ └── success.html │ ├── Role │ ├── add.html │ ├── auth.html │ ├── edit.html │ └── index.html │ ├── SellerCate │ ├── add.html │ ├── edit.html │ └── index.html │ ├── SellerList │ ├── add.html │ ├── collect_success.html │ ├── edit.html │ └── index.html │ ├── Setting │ ├── collect_success.html │ ├── guanzhu.html │ ├── index.html │ ├── msg.html │ └── oauth.html │ ├── User │ ├── edit.html │ ├── index.html │ └── setscore.html │ ├── WFDefination │ ├── add.html │ ├── edit.html │ └── index.html │ ├── WFNode │ ├── add.html │ ├── edit.html │ └── index.html │ ├── WFProcess │ ├── add.html │ ├── edit.html │ └── index.html │ └── WorkFlow │ ├── list_defination.html │ ├── list_my_process.html │ └── view_process.html ├── app ├── Conf │ ├── config.php │ └── tags.php ├── Lib │ ├── Action │ │ └── IndexAction.class.php │ └── Behavior │ │ └── SwitchMobileTplBehavior.class.php ├── Runtime │ ├── Cache │ │ ├── 3f6448edb80585dfae75998878cf29ba.php │ │ └── 9885ecc411f90bec36756701bd64bb4a.php │ └── Logs │ │ ├── 13_11_13.log │ │ ├── 13_11_15.log │ │ ├── 13_11_30.log │ │ ├── 13_12_11.log │ │ ├── 13_12_13.log │ │ └── 13_12_26.log └── Tpl │ ├── Index │ ├── Index.html │ ├── Index==.html │ ├── ��+� Index.html │ └── ©¦+¦ Index.html │ ├── Public │ ├── css │ │ ├── TPMlist.css │ │ └── TPMmodal.css │ └── js │ │ ├── .TPM.js.swp │ │ ├── TPM.js │ │ ├── TPMlist.js │ │ ├── TPMmodal.js │ │ ├── TPMupload.js │ │ ├── app.js │ │ ├── bootstrap.min.js │ │ ├── desktopBrowsers.js │ │ ├── jquery-1.9.1.min.js │ │ ├── jquery-2.0.0.min.js │ │ ├── modernizr.js │ │ ├── prefixfree.min.js │ │ └── touch.js │ ├── TPM-1.0.apk │ ├── build.php │ ├── index.html │ └── layout.html ├── config.inc.php ├── core ├── Common │ ├── common.php │ ├── functions.php │ └── runtime.php ├── Conf │ ├── alias.php │ ├── convention.php │ ├── debug.php │ └── tags.php ├── Extend │ ├── Action │ │ └── RestAction.class.php │ ├── Behavior │ │ ├── AgentCheckBehavior.class.php │ │ ├── BrowserCheckBehavior.class.php │ │ ├── CheckActionRouteBehavior.class.php │ │ ├── CheckLangBehavior.class.php │ │ ├── CronRunBehavior.class.php │ │ ├── FireShowPageTraceBehavior.class.php │ │ ├── RobotCheckBehavior.class.php │ │ └── UpgradeNoticeBehavior.class.php │ ├── Driver │ │ ├── Cache │ │ │ ├── CacheApachenote.class.php │ │ │ ├── CacheApc.class.php │ │ │ ├── CacheDb.class.php │ │ │ ├── CacheEaccelerator.class.php │ │ │ ├── CacheMemcache.class.php │ │ │ ├── CacheRedis.class.php │ │ │ ├── CacheShmop.class.php │ │ │ ├── CacheSqlite.class.php │ │ │ ├── CacheWincache.class.php │ │ │ └── CacheXcache.class.php │ │ ├── Db │ │ │ ├── DbIbase.class.php │ │ │ ├── DbMongo.class.php │ │ │ ├── DbMssql.class.php │ │ │ ├── DbOracle.class.php │ │ │ ├── DbPdo.class.php │ │ │ ├── DbPgsql.class.php │ │ │ ├── DbSqlite.class.php │ │ │ └── DbSqlsrv.class.php │ │ ├── Session │ │ │ └── SessionDb.class.php │ │ ├── TagLib │ │ │ └── TagLibHtml.class.php │ │ └── Template │ │ │ ├── TemplateEase.class.php │ │ │ ├── TemplateLite.class.php │ │ │ ├── TemplateMobile.class.php │ │ │ ├── TemplateSmart.class.php │ │ │ └── TemplateSmarty.class.php │ ├── Function │ │ └── extend.php │ ├── Library │ │ └── ORG │ │ │ ├── Crypt │ │ │ ├── Base64.class.php │ │ │ ├── Crypt.class.php │ │ │ ├── Des.class.php │ │ │ ├── Hmac.class.php │ │ │ ├── Rsa.class.php │ │ │ └── Xxtea.class.php │ │ │ ├── Io │ │ │ └── Dir.class.php │ │ │ ├── Net │ │ │ ├── Http.class.php │ │ │ ├── IpLocation.class.php │ │ │ └── UploadFile.class.php │ │ │ └── Util │ │ │ ├── ArrayList.class.php │ │ │ ├── Auth.class.php │ │ │ ├── CodeSwitch.class.php │ │ │ ├── Cookie.class.php │ │ │ ├── Date.class.php │ │ │ ├── Debug.class.php │ │ │ ├── HtmlExtractor.class.php │ │ │ ├── Image.class.php │ │ │ ├── Image │ │ │ ├── Driver │ │ │ │ ├── GIF.class.php │ │ │ │ ├── ImageGd.class.php │ │ │ │ └── ImageImagick.class.php │ │ │ ├── ThinkImage.class.php │ │ │ └── readme.md │ │ │ ├── Input.class.php │ │ │ ├── Page.class.php │ │ │ ├── RBAC.class.php │ │ │ ├── Session.class.php │ │ │ ├── Socket.class.php │ │ │ ├── Stack.class.php │ │ │ └── String.class.php │ ├── Mode │ │ ├── Amf │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ └── Model.class.php │ │ ├── Cli │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ ├── Log.class.php │ │ │ ├── Model.class.php │ │ │ └── functions.php │ │ ├── Lite │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ ├── Dispatcher.class.php │ │ │ ├── Model.class.php │ │ │ └── tags.php │ │ ├── Phprpc │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ ├── Model.class.php │ │ │ └── alias.php │ │ ├── Rest │ │ │ ├── Action.class.php │ │ │ ├── Behavior │ │ │ │ ├── CheckRestRouteBehavior.class.php │ │ │ │ └── CheckUrlExtBehavior.class.php │ │ │ ├── config.php │ │ │ └── tags.php │ │ ├── Thin │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ └── Model.class.php │ │ ├── amf.php │ │ ├── cli.php │ │ ├── lite.php │ │ ├── phprpc.php │ │ ├── rest.php │ │ └── thin.php │ ├── Model │ │ ├── AdvModel.class.php │ │ ├── MongoModel.class.php │ │ ├── RelationModel.class.php │ │ └── ViewModel.class.php │ ├── README.txt │ ├── Tool │ │ ├── Requirements-Checker │ │ │ ├── .htaccess │ │ │ ├── assets │ │ │ │ ├── checker.phtml │ │ │ │ ├── denied │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── checker.js │ │ │ │ │ └── web.config │ │ │ │ ├── failed.gif │ │ │ │ ├── info.gif │ │ │ │ ├── logo.png │ │ │ │ ├── passed.gif │ │ │ │ ├── rewrite │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── checker.js │ │ │ │ │ └── web.config │ │ │ │ └── warning.gif │ │ │ └── checker.php │ │ ├── TPM │ │ │ ├── SwitchMobileTplBehavior.class.php │ │ │ ├── TemplateMobile.class.php │ │ │ ├── Tpl │ │ │ │ ├── Index │ │ │ │ │ └── index.html │ │ │ │ ├── Public │ │ │ │ │ ├── css │ │ │ │ │ │ ├── TPMlist.css │ │ │ │ │ │ └── TPMmodal.css │ │ │ │ │ └── js │ │ │ │ │ │ ├── .TPM.js.swp │ │ │ │ │ │ ├── TPM.js │ │ │ │ │ │ ├── TPMlist.js │ │ │ │ │ │ ├── TPMmodal.js │ │ │ │ │ │ ├── TPMupload.js │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── desktopBrowsers.js │ │ │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ │ │ ├── jquery-2.0.0.min.js │ │ │ │ │ │ ├── modernizr.js │ │ │ │ │ │ ├── prefixfree.min.js │ │ │ │ │ │ └── touch.js │ │ │ │ ├── index.html │ │ │ │ └── layout.html │ │ │ └── readme.txt │ │ ├── phpunit.php │ │ └── thinkeditor │ │ │ ├── ThinkEditor.js │ │ │ ├── jquery-1.6.2.min.js │ │ │ ├── plugins │ │ │ ├── myplugins.js │ │ │ ├── system.js │ │ │ └── upload_interface.js │ │ │ └── skins │ │ │ ├── default │ │ │ ├── config.js │ │ │ ├── dialog │ │ │ │ ├── css │ │ │ │ │ ├── base.css │ │ │ │ │ └── te_dialog.css │ │ │ │ └── dialog.html │ │ │ ├── img │ │ │ │ ├── bg_img.jpg │ │ │ │ ├── bg_img.png │ │ │ │ ├── resize_center.jpg │ │ │ │ ├── resize_leftjpg.jpg │ │ │ │ └── spacer.gif │ │ │ ├── style.css │ │ │ └── styles.css │ │ │ └── qq_face │ │ │ ├── qq_face.gif │ │ │ ├── qq_face_0.gif │ │ │ ├── qq_face_1.gif │ │ │ ├── qq_face_10.gif │ │ │ ├── qq_face_100.gif │ │ │ ├── qq_face_101.gif │ │ │ ├── qq_face_102.gif │ │ │ ├── qq_face_103.gif │ │ │ ├── qq_face_104.gif │ │ │ ├── qq_face_11.gif │ │ │ ├── qq_face_12.gif │ │ │ ├── qq_face_13.gif │ │ │ ├── qq_face_14.gif │ │ │ ├── qq_face_15.gif │ │ │ ├── qq_face_16.gif │ │ │ ├── qq_face_17.gif │ │ │ ├── qq_face_18.gif │ │ │ ├── qq_face_19.gif │ │ │ ├── qq_face_2.gif │ │ │ ├── qq_face_20.gif │ │ │ ├── qq_face_21.gif │ │ │ ├── qq_face_22.gif │ │ │ ├── qq_face_23.gif │ │ │ ├── qq_face_24.gif │ │ │ ├── qq_face_25.gif │ │ │ ├── qq_face_26.gif │ │ │ ├── qq_face_27.gif │ │ │ ├── qq_face_28.gif │ │ │ ├── qq_face_29.gif │ │ │ ├── qq_face_3.gif │ │ │ ├── qq_face_30.gif │ │ │ ├── qq_face_31.gif │ │ │ ├── qq_face_32.gif │ │ │ ├── qq_face_33.gif │ │ │ ├── qq_face_34.gif │ │ │ ├── qq_face_35.gif │ │ │ ├── qq_face_36.gif │ │ │ ├── qq_face_37.gif │ │ │ ├── qq_face_38.gif │ │ │ ├── qq_face_39.gif │ │ │ ├── qq_face_4.gif │ │ │ ├── qq_face_40.gif │ │ │ ├── qq_face_41.gif │ │ │ ├── qq_face_42.gif │ │ │ ├── qq_face_43.gif │ │ │ ├── qq_face_44.gif │ │ │ ├── qq_face_45.gif │ │ │ ├── qq_face_46.gif │ │ │ ├── qq_face_47.gif │ │ │ ├── qq_face_48.gif │ │ │ ├── qq_face_49.gif │ │ │ ├── qq_face_5.gif │ │ │ ├── qq_face_50.gif │ │ │ ├── qq_face_51.gif │ │ │ ├── qq_face_52.gif │ │ │ ├── qq_face_53.gif │ │ │ ├── qq_face_54.gif │ │ │ ├── qq_face_55.gif │ │ │ ├── qq_face_56.gif │ │ │ ├── qq_face_57.gif │ │ │ ├── qq_face_58.gif │ │ │ ├── qq_face_59.gif │ │ │ ├── qq_face_6.gif │ │ │ ├── qq_face_60.gif │ │ │ ├── qq_face_61.gif │ │ │ ├── qq_face_62.gif │ │ │ ├── qq_face_63.gif │ │ │ ├── qq_face_64.gif │ │ │ ├── qq_face_65.gif │ │ │ ├── qq_face_66.gif │ │ │ ├── qq_face_67.gif │ │ │ ├── qq_face_68.gif │ │ │ ├── qq_face_69.gif │ │ │ ├── qq_face_7.gif │ │ │ ├── qq_face_70.gif │ │ │ ├── qq_face_71.gif │ │ │ ├── qq_face_72.gif │ │ │ ├── qq_face_73.gif │ │ │ ├── qq_face_74.gif │ │ │ ├── qq_face_75.gif │ │ │ ├── qq_face_76.gif │ │ │ ├── qq_face_77.gif │ │ │ ├── qq_face_78.gif │ │ │ ├── qq_face_79.gif │ │ │ ├── qq_face_8.gif │ │ │ ├── qq_face_80.gif │ │ │ ├── qq_face_81.gif │ │ │ ├── qq_face_82.gif │ │ │ ├── qq_face_83.gif │ │ │ ├── qq_face_84.gif │ │ │ ├── qq_face_85.gif │ │ │ ├── qq_face_86.gif │ │ │ ├── qq_face_87.gif │ │ │ ├── qq_face_88.gif │ │ │ ├── qq_face_89.gif │ │ │ ├── qq_face_9.gif │ │ │ ├── qq_face_90.gif │ │ │ ├── qq_face_91.gif │ │ │ ├── qq_face_92.gif │ │ │ ├── qq_face_93.gif │ │ │ ├── qq_face_94.gif │ │ │ ├── qq_face_95.gif │ │ │ ├── qq_face_96.gif │ │ │ ├── qq_face_97.gif │ │ │ ├── qq_face_98.gif │ │ │ └── qq_face_99.gif │ └── Vendor │ │ ├── EaseTemplate │ │ ├── template.core.php │ │ └── template.ease.php │ │ ├── SmartTemplate │ │ ├── class.smarttemplate.php │ │ ├── class.smarttemplatedebugger.php │ │ └── class.smarttemplateparser.php │ │ ├── Smarty │ │ ├── Smarty.class.php │ │ ├── SmartyBC.class.php │ │ ├── debug.tpl │ │ ├── plugins │ │ │ ├── block.textformat.php │ │ │ ├── function.counter.php │ │ │ ├── function.cycle.php │ │ │ ├── function.fetch.php │ │ │ ├── function.html_checkboxes.php │ │ │ ├── function.html_image.php │ │ │ ├── function.html_options.php │ │ │ ├── function.html_radios.php │ │ │ ├── function.html_select_date.php │ │ │ ├── function.html_select_time.php │ │ │ ├── function.html_table.php │ │ │ ├── function.mailto.php │ │ │ ├── function.math.php │ │ │ ├── modifier.capitalize.php │ │ │ ├── modifier.date_format.php │ │ │ ├── modifier.debug_print_var.php │ │ │ ├── modifier.escape.php │ │ │ ├── modifier.regex_replace.php │ │ │ ├── modifier.replace.php │ │ │ ├── modifier.spacify.php │ │ │ ├── modifier.truncate.php │ │ │ ├── modifiercompiler.cat.php │ │ │ ├── modifiercompiler.count_characters.php │ │ │ ├── modifiercompiler.count_paragraphs.php │ │ │ ├── modifiercompiler.count_sentences.php │ │ │ ├── modifiercompiler.count_words.php │ │ │ ├── modifiercompiler.default.php │ │ │ ├── modifiercompiler.escape.php │ │ │ ├── modifiercompiler.from_charset.php │ │ │ ├── modifiercompiler.indent.php │ │ │ ├── modifiercompiler.lower.php │ │ │ ├── modifiercompiler.noprint.php │ │ │ ├── modifiercompiler.string_format.php │ │ │ ├── modifiercompiler.strip.php │ │ │ ├── modifiercompiler.strip_tags.php │ │ │ ├── modifiercompiler.to_charset.php │ │ │ ├── modifiercompiler.unescape.php │ │ │ ├── modifiercompiler.upper.php │ │ │ ├── modifiercompiler.wordwrap.php │ │ │ ├── outputfilter.trimwhitespace.php │ │ │ ├── shared.escape_special_chars.php │ │ │ ├── shared.literal_compiler_param.php │ │ │ ├── shared.make_timestamp.php │ │ │ ├── shared.mb_str_replace.php │ │ │ ├── shared.mb_unicode.php │ │ │ ├── shared.mb_wordwrap.php │ │ │ └── variablefilter.htmlspecialchars.php │ │ └── sysplugins │ │ │ ├── smarty_cacheresource.php │ │ │ ├── smarty_cacheresource_custom.php │ │ │ ├── smarty_cacheresource_keyvaluestore.php │ │ │ ├── smarty_config_source.php │ │ │ ├── smarty_internal_cacheresource_file.php │ │ │ ├── smarty_internal_compile_append.php │ │ │ ├── smarty_internal_compile_assign.php │ │ │ ├── smarty_internal_compile_block.php │ │ │ ├── smarty_internal_compile_break.php │ │ │ ├── smarty_internal_compile_call.php │ │ │ ├── smarty_internal_compile_capture.php │ │ │ ├── smarty_internal_compile_config_load.php │ │ │ ├── smarty_internal_compile_continue.php │ │ │ ├── smarty_internal_compile_debug.php │ │ │ ├── smarty_internal_compile_eval.php │ │ │ ├── smarty_internal_compile_extends.php │ │ │ ├── smarty_internal_compile_for.php │ │ │ ├── smarty_internal_compile_foreach.php │ │ │ ├── smarty_internal_compile_function.php │ │ │ ├── smarty_internal_compile_if.php │ │ │ ├── smarty_internal_compile_include.php │ │ │ ├── smarty_internal_compile_include_php.php │ │ │ ├── smarty_internal_compile_insert.php │ │ │ ├── smarty_internal_compile_ldelim.php │ │ │ ├── smarty_internal_compile_nocache.php │ │ │ ├── smarty_internal_compile_private_block_plugin.php │ │ │ ├── smarty_internal_compile_private_function_plugin.php │ │ │ ├── smarty_internal_compile_private_modifier.php │ │ │ ├── smarty_internal_compile_private_object_block_function.php │ │ │ ├── smarty_internal_compile_private_object_function.php │ │ │ ├── smarty_internal_compile_private_print_expression.php │ │ │ ├── smarty_internal_compile_private_registered_block.php │ │ │ ├── smarty_internal_compile_private_registered_function.php │ │ │ ├── smarty_internal_compile_private_special_variable.php │ │ │ ├── smarty_internal_compile_rdelim.php │ │ │ ├── smarty_internal_compile_section.php │ │ │ ├── smarty_internal_compile_setfilter.php │ │ │ ├── smarty_internal_compile_while.php │ │ │ ├── smarty_internal_compilebase.php │ │ │ ├── smarty_internal_config.php │ │ │ ├── smarty_internal_config_file_compiler.php │ │ │ ├── smarty_internal_configfilelexer.php │ │ │ ├── smarty_internal_configfileparser.php │ │ │ ├── smarty_internal_data.php │ │ │ ├── smarty_internal_debug.php │ │ │ ├── smarty_internal_filter_handler.php │ │ │ ├── smarty_internal_function_call_handler.php │ │ │ ├── smarty_internal_get_include_path.php │ │ │ ├── smarty_internal_nocache_insert.php │ │ │ ├── smarty_internal_parsetree.php │ │ │ ├── smarty_internal_resource_eval.php │ │ │ ├── smarty_internal_resource_extends.php │ │ │ ├── smarty_internal_resource_file.php │ │ │ ├── smarty_internal_resource_php.php │ │ │ ├── smarty_internal_resource_registered.php │ │ │ ├── smarty_internal_resource_stream.php │ │ │ ├── smarty_internal_resource_string.php │ │ │ ├── smarty_internal_smartytemplatecompiler.php │ │ │ ├── smarty_internal_template.php │ │ │ ├── smarty_internal_templatebase.php │ │ │ ├── smarty_internal_templatecompilerbase.php │ │ │ ├── smarty_internal_templatelexer.php │ │ │ ├── smarty_internal_templateparser.php │ │ │ ├── smarty_internal_utility.php │ │ │ ├── smarty_internal_write_file.php │ │ │ ├── smarty_resource.php │ │ │ ├── smarty_resource_custom.php │ │ │ ├── smarty_resource_recompiled.php │ │ │ ├── smarty_resource_uncompiled.php │ │ │ └── smarty_security.php │ │ ├── TemplateLite │ │ ├── class.compiler.php │ │ ├── class.config.php │ │ ├── class.template.php │ │ └── internal │ │ │ ├── compile.compile_config.php │ │ │ ├── compile.compile_custom_block.php │ │ │ ├── compile.compile_custom_function.php │ │ │ ├── compile.compile_if.php │ │ │ ├── compile.generate_compiler_debug_output.php │ │ │ ├── compile.include.php │ │ │ ├── compile.parse_is_expr.php │ │ │ ├── compile.section_start.php │ │ │ ├── debug.tpl │ │ │ ├── template.build_dir.php │ │ │ ├── template.config_loader.php │ │ │ ├── template.destroy_dir.php │ │ │ ├── template.fetch_compile_include.php │ │ │ └── template.generate_debug_output.php │ │ ├── Zend │ │ ├── Amf │ │ │ ├── Adobe │ │ │ │ ├── Auth.php │ │ │ │ ├── DbInspector.php │ │ │ │ └── Introspector.php │ │ │ ├── Auth │ │ │ │ └── Abstract.php │ │ │ ├── Constants.php │ │ │ ├── Exception.php │ │ │ ├── Parse │ │ │ │ ├── Amf0 │ │ │ │ │ ├── Deserializer.php │ │ │ │ │ └── Serializer.php │ │ │ │ ├── Amf3 │ │ │ │ │ ├── Deserializer.php │ │ │ │ │ └── Serializer.php │ │ │ │ ├── Deserializer.php │ │ │ │ ├── InputStream.php │ │ │ │ ├── OutputStream.php │ │ │ │ ├── Resource │ │ │ │ │ ├── MysqlResult.php │ │ │ │ │ ├── MysqliResult.php │ │ │ │ │ └── Stream.php │ │ │ │ ├── Serializer.php │ │ │ │ └── TypeLoader.php │ │ │ ├── Request.php │ │ │ ├── Request │ │ │ │ └── Http.php │ │ │ ├── Response.php │ │ │ ├── Response │ │ │ │ └── Http.php │ │ │ ├── Server.php │ │ │ ├── Server │ │ │ │ └── Exception.php │ │ │ ├── Util │ │ │ │ └── BinaryStream.php │ │ │ └── Value │ │ │ │ ├── ByteArray.php │ │ │ │ ├── MessageBody.php │ │ │ │ ├── MessageHeader.php │ │ │ │ ├── Messaging │ │ │ │ ├── AbstractMessage.php │ │ │ │ ├── AcknowledgeMessage.php │ │ │ │ ├── ArrayCollection.php │ │ │ │ ├── AsyncMessage.php │ │ │ │ ├── CommandMessage.php │ │ │ │ ├── ErrorMessage.php │ │ │ │ └── RemotingMessage.php │ │ │ │ └── TraitsInfo.php │ │ ├── Auth.php │ │ ├── Date.php │ │ ├── Date │ │ │ ├── Cities.php │ │ │ ├── DateObject.php │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Loader.php │ │ ├── Loader │ │ │ ├── Autoloader.php │ │ │ ├── Autoloader │ │ │ │ ├── Interface.php │ │ │ │ └── Resource.php │ │ │ ├── Exception.php │ │ │ ├── PluginLoader.php │ │ │ └── PluginLoader │ │ │ │ ├── Exception.php │ │ │ │ └── Interface.php │ │ ├── Server │ │ │ ├── Abstract.php │ │ │ ├── Cache.php │ │ │ ├── Definition.php │ │ │ ├── Exception.php │ │ │ ├── Interface.php │ │ │ ├── Method │ │ │ │ ├── Callback.php │ │ │ │ ├── Definition.php │ │ │ │ ├── Parameter.php │ │ │ │ └── Prototype.php │ │ │ ├── Reflection.php │ │ │ └── Reflection │ │ │ │ ├── Class.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Function.php │ │ │ │ ├── Function │ │ │ │ └── Abstract.php │ │ │ │ ├── Method.php │ │ │ │ ├── Node.php │ │ │ │ ├── Parameter.php │ │ │ │ ├── Prototype.php │ │ │ │ └── ReturnValue.php │ │ └── Version.php │ │ ├── phpRPC │ │ ├── bigint.php │ │ ├── compat.php │ │ ├── dhparams.php │ │ ├── dhparams │ │ │ ├── 1024.dhp │ │ │ ├── 128.dhp │ │ │ ├── 1536.dhp │ │ │ ├── 160.dhp │ │ │ ├── 192.dhp │ │ │ ├── 2048.dhp │ │ │ ├── 256.dhp │ │ │ ├── 3072.dhp │ │ │ ├── 4096.dhp │ │ │ ├── 512.dhp │ │ │ ├── 768.dhp │ │ │ └── 96.dhp │ │ ├── pecl │ │ │ └── xxtea │ │ │ │ ├── CREDITS │ │ │ │ ├── INSTALL │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── config.m4 │ │ │ │ ├── config.w32 │ │ │ │ ├── php_xxtea.c │ │ │ │ ├── php_xxtea.dsp │ │ │ │ ├── php_xxtea.h │ │ │ │ ├── php_xxtea.sln │ │ │ │ ├── php_xxtea.vcproj │ │ │ │ ├── test │ │ │ │ └── test.php │ │ │ │ ├── xxtea.c │ │ │ │ └── xxtea.h │ │ ├── phprpc_client.php │ │ ├── phprpc_date.php │ │ ├── phprpc_server.php │ │ └── xxtea.php │ │ └── readme.txt ├── LICENSE.txt ├── Lang │ ├── en-us.php │ └── zh-cn.php ├── Lib │ ├── Behavior │ │ ├── CheckRouteBehavior.class.php │ │ ├── ContentReplaceBehavior.class.php │ │ ├── ParseTemplateBehavior.class.php │ │ ├── ReadHtmlCacheBehavior.class.php │ │ ├── ShowPageTraceBehavior.class.php │ │ ├── ShowRuntimeBehavior.class.php │ │ ├── TokenBuildBehavior.class.php │ │ └── WriteHtmlCacheBehavior.class.php │ ├── Core │ │ ├── Action.class.php │ │ ├── App.class.php │ │ ├── Behavior.class.php │ │ ├── Cache.class.php │ │ ├── Db.class.php │ │ ├── Dispatcher.class.php │ │ ├── Log.class.php │ │ ├── Model.class.php │ │ ├── Think.class.php │ │ ├── ThinkException.class.php │ │ ├── View.class.php │ │ └── Widget.class.php │ ├── Driver │ │ ├── Cache │ │ │ └── CacheFile.class.php │ │ ├── Db │ │ │ ├── DbMysql.class.php │ │ │ └── DbMysqli.class.php │ │ └── TagLib │ │ │ └── TagLibCx.class.php │ └── Template │ │ ├── TagLib.class.php │ │ └── ThinkTemplate.class.php ├── README.txt ├── ThinkPHP.php ├── Tpl │ ├── default_index.tpl │ ├── dispatch_jump.tpl │ ├── page_trace.tpl │ └── think_exception.tpl └── logo.png ├── data ├── _fields │ ├── mobilecms.access.php │ ├── mobilecms.ad.php │ ├── mobilecms.adboard.php │ ├── mobilecms.admin.php │ ├── mobilecms.article.php │ ├── mobilecms.article_cate.php │ ├── mobilecms.flink.php │ ├── mobilecms.flink_cate.php │ ├── mobilecms.group.php │ ├── mobilecms.nav.php │ ├── mobilecms.node.php │ ├── mobilecms.role.php │ └── mobilecms.setting.php ├── adboard │ ├── banner.config.php │ ├── banner.html │ ├── focus.config.php │ └── focus.html ├── index.html ├── install.lock ├── install.temp.php └── news │ ├── 52a80c2398968.jpg │ ├── 52a80c5acdfe6.jpg │ ├── 52a80f9f22551.JPG │ ├── 52a80fb057bcf.JPG │ ├── 52a80fc01ab3f.JPG │ ├── 52a80fce3567e.JPG │ ├── 52a80fd9dd40a.JPG │ ├── 52a80fe7a037a.JPG │ ├── 52a80ff600000.JPG │ ├── 52a8100190f56.JPG │ ├── 52a81012f0537.JPG │ ├── 52a8101e03d09.JPG │ ├── 52a81035cdfe6.JPG │ ├── 52a81041487ab.JPG │ ├── 52a8104c7270e.JPG │ ├── 52a8105f3567e.JPG │ ├── 52a810727de29.JPG │ ├── 52a8108881b32.JPG │ ├── 52a810980f424.JPG │ ├── 52a810a81e848.JPG │ └── 52a8269722551.JPG ├── icon.png ├── index.php ├── request.php ├── statics ├── admin │ ├── css │ │ ├── login.css │ │ ├── main.css │ │ └── style.css │ ├── images │ │ ├── ajax_loading.gif │ │ ├── asc.gif │ │ ├── avatar-60.png │ │ ├── bnt_bg.png │ │ ├── button_bg.gif │ │ ├── color.png │ │ ├── desc.gif │ │ ├── h_bg.gif │ │ ├── hr.gif │ │ ├── icon_use.png │ │ ├── input.png │ │ ├── input_date.png │ │ ├── input_focus.png │ │ ├── left_bg.png │ │ ├── left_menu.png │ │ ├── left_menu_openClose.png │ │ ├── login.png │ │ ├── login_bg.gif │ │ ├── login_btn.gif │ │ ├── login_pass_bg.gif │ │ ├── login_user_bg.gif │ │ ├── logo.png │ │ ├── main-left-a.gif │ │ ├── msg.png │ │ ├── msg_bg.png │ │ ├── nav_bg.png │ │ ├── nopic.gif │ │ ├── oauth.png │ │ ├── pages.png │ │ ├── set_y_line.png │ │ ├── tv-collapsable.gif │ │ ├── tv-expandable.gif │ │ ├── tv-item.gif │ │ ├── uline.gif │ │ └── x_bg.png │ └── js │ │ └── admin_common.js ├── css │ ├── dialog.css │ └── formvalidator.css ├── images │ ├── dialog │ │ ├── border.png │ │ ├── btns.png │ │ ├── chrome_s.png │ │ ├── chrome_s_1.png │ │ ├── icons.png │ │ ├── loading.gif │ │ ├── loading_d.gif │ │ ├── msg.png │ │ └── msg_bg.png │ ├── end.png │ ├── loading-footer.gif │ ├── masonry_loading_1.gif │ ├── masonry_loadingí¬í¬bac.gif │ ├── masonry_loading����bac.gif │ ├── status_0.gif │ └── status_1.gif ├── index.html └── js │ ├── calendar │ ├── calendar-blue.css │ └── calendar.js │ ├── dialog.js │ ├── iColorPicker.js │ ├── jquery.masonry.min.js │ ├── jquery │ ├── jquery-1.4.2.min.js │ ├── jquery-1.7.2.min.js │ └── plugins │ │ ├── formvalidator.js │ │ ├── formvalidator.min.js │ │ ├── formvalidatorregex.js │ │ ├── iColorPicker.js │ │ ├── jquery.KinSlideshow-1.2.1.min.js │ │ ├── jquery.cookie.js │ │ ├── jquery.corner.js │ │ ├── jquery.imagePreview.js │ │ ├── jquery.infinitescroll.js │ │ ├── jquery.lazyload.js │ │ ├── jquery.masonry.js │ │ ├── jquery.masonry.min.js │ │ └── jquery.scroll.js │ ├── kindeditor │ ├── kindeditor-min.js │ ├── kindeditor.js │ ├── lang │ │ ├── ar.js │ │ ├── en.js │ │ ├── zh_CN.js │ │ └── zh_TW.js │ ├── license.txt │ ├── php │ │ ├── JSON.php │ │ ├── file_manager_json.php │ │ └── upload_json.php │ ├── plugins │ │ ├── anchor │ │ │ └── anchor.js │ │ ├── baidumap │ │ │ ├── baidumap.js │ │ │ ├── index.html │ │ │ └── map.html │ │ ├── clearhtml │ │ │ └── clearhtml.js │ │ ├── code │ │ │ ├── code.js │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ ├── emoticons │ │ │ ├── emoticons.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 100.gif │ │ │ │ ├── 101.gif │ │ │ │ ├── 102.gif │ │ │ │ ├── 103.gif │ │ │ │ ├── 104.gif │ │ │ │ ├── 105.gif │ │ │ │ ├── 106.gif │ │ │ │ ├── 107.gif │ │ │ │ ├── 108.gif │ │ │ │ ├── 109.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 110.gif │ │ │ │ ├── 111.gif │ │ │ │ ├── 112.gif │ │ │ │ ├── 113.gif │ │ │ │ ├── 114.gif │ │ │ │ ├── 115.gif │ │ │ │ ├── 116.gif │ │ │ │ ├── 117.gif │ │ │ │ ├── 118.gif │ │ │ │ ├── 119.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 120.gif │ │ │ │ ├── 121.gif │ │ │ │ ├── 122.gif │ │ │ │ ├── 123.gif │ │ │ │ ├── 124.gif │ │ │ │ ├── 125.gif │ │ │ │ ├── 126.gif │ │ │ │ ├── 127.gif │ │ │ │ ├── 128.gif │ │ │ │ ├── 129.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 130.gif │ │ │ │ ├── 131.gif │ │ │ │ ├── 132.gif │ │ │ │ ├── 133.gif │ │ │ │ ├── 134.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 72.gif │ │ │ │ ├── 73.gif │ │ │ │ ├── 74.gif │ │ │ │ ├── 75.gif │ │ │ │ ├── 76.gif │ │ │ │ ├── 77.gif │ │ │ │ ├── 78.gif │ │ │ │ ├── 79.gif │ │ │ │ ├── 8.gif │ │ │ │ ├── 80.gif │ │ │ │ ├── 81.gif │ │ │ │ ├── 82.gif │ │ │ │ ├── 83.gif │ │ │ │ ├── 84.gif │ │ │ │ ├── 85.gif │ │ │ │ ├── 86.gif │ │ │ │ ├── 87.gif │ │ │ │ ├── 88.gif │ │ │ │ ├── 89.gif │ │ │ │ ├── 9.gif │ │ │ │ ├── 90.gif │ │ │ │ ├── 91.gif │ │ │ │ ├── 92.gif │ │ │ │ ├── 93.gif │ │ │ │ ├── 94.gif │ │ │ │ ├── 95.gif │ │ │ │ ├── 96.gif │ │ │ │ ├── 97.gif │ │ │ │ ├── 98.gif │ │ │ │ ├── 99.gif │ │ │ │ └── static.gif │ │ ├── filemanager │ │ │ ├── filemanager.js │ │ │ └── images │ │ │ │ ├── file-16.gif │ │ │ │ ├── file-64.gif │ │ │ │ ├── folder-16.gif │ │ │ │ ├── folder-64.gif │ │ │ │ └── go-up.gif │ │ ├── flash │ │ │ └── flash.js │ │ ├── image │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── align_left.gif │ │ │ │ ├── align_right.gif │ │ │ │ ├── align_top.gif │ │ │ │ └── refresh.png │ │ ├── insertfile │ │ │ └── insertfile.js │ │ ├── lineheight │ │ │ └── lineheight.js │ │ ├── link │ │ │ └── link.js │ │ ├── map │ │ │ ├── map.html │ │ │ └── map.js │ │ ├── media │ │ │ └── media.js │ │ ├── multiimage │ │ │ ├── images │ │ │ │ ├── image.png │ │ │ │ ├── select-files-en.png │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ └── swfupload.swf │ │ │ └── multiimage.js │ │ ├── pagebreak │ │ │ └── pagebreak.js │ │ ├── plainpaste │ │ │ └── plainpaste.js │ │ ├── preview │ │ │ └── preview.js │ │ ├── quickformat │ │ │ └── quickformat.js │ │ ├── table │ │ │ └── table.js │ │ ├── template │ │ │ ├── html │ │ │ │ ├── 1.html │ │ │ │ ├── 2.html │ │ │ │ └── 3.html │ │ │ └── template.js │ │ └── wordpaste │ │ │ └── wordpaste.js │ └── themes │ │ ├── common │ │ ├── anchor.gif │ │ ├── blank.gif │ │ ├── flash.gif │ │ ├── loading.gif │ │ ├── media.gif │ │ └── rm.gif │ │ ├── default │ │ ├── background.png │ │ ├── default.css │ │ └── default.png │ │ ├── qq │ │ ├── editor.gif │ │ └── qq.css │ │ └── simple │ │ └── simple.css │ └── waterfall.js └── thinkphp.sql /README: -------------------------------------------------------------------------------- 1 | very good 2 | -------------------------------------------------------------------------------- /tp/admin.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tp/admin/Conf/config.php: -------------------------------------------------------------------------------- 1 | '配置值' 6 | 'URL_MODEL' => 0, 7 | //DEFAULT_LANG' => 'zh-cn', 8 | 'LANG_SWITCH_ON' => true, 9 | 'DEFAULT_LANG' => 'zh-cn', // 默认语言 10 | 'LANG_AUTO_DETECT' => true, // 自动侦测语言 11 | //'APP_AUTOLOAD_PATH'=>'@.TagLib',// 12 | 'IGNORE_PRIV_LIST'=>array( 13 | array( 14 | 'module_name'=>'Admin', 15 | 'action_list'=>array('ajaxCheckUsername') 16 | ), 17 | array( 18 | 'module_name'=>'Public', 19 | 'action_list'=>array() 20 | ), 21 | array( 22 | 'module_name'=>'Index', 23 | 'action_list'=>array('verify','index') 24 | ) 25 | ), 26 | 27 | //'URL_CASE_INSENSITIVE' =>true, 28 | 'APP_AUTOLOAD_PATH' => '@.TagLib', //自动加载项目类库 29 | 'TMPL_ACTION_ERROR' => 'Public:error', 30 | 'TMPL_ACTION_SUCCESS' => 'Public:success', 31 | ); 32 | return array_merge($config,$array); 33 | ?> -------------------------------------------------------------------------------- /tp/admin/Conf/tags.php: -------------------------------------------------------------------------------- 1 | array( //因为项目中也可能用到语言行为,最好放在项目开始的地方 14 | 'CheckLang' //检测语言 15 | ), 16 | ); -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/ad.php: -------------------------------------------------------------------------------- 1 | '广告名称', 4 | 'URL' => '广告链接', 5 | 'BOARD_ID'=>'广告位', 6 | 'TYPE'=>'广告类型', 7 | 'AD_TEXT'=>'文字内容', 8 | 'AD_CODE'=>'广告代码', 9 | 'AD_IMAGE'=>'广告图片', 10 | 'AD_FLASH'=>'广告动画', 11 | 'START_TIME'=>'开始时间', 12 | 'END_TIME'=>'结束时间', 13 | 'STATUS'=>'状态', 14 | 'ID'=>'ID', 15 | 'CLICKS'=>'点击量', 16 | 'ORDID'=>'排序', 17 | 'OPERATIONAL'=>'操作' 18 | 19 | ); 20 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/admin.php: -------------------------------------------------------------------------------- 1 | '用户名', 4 | 'PASSWORD' => '密码', 5 | 'REPASSWORD' => '确认密码', 6 | 'ROLE_ID'=>'所属分组', 7 | 'STATUS'=>'审核状态', 8 | 'ID'=>'ID', 9 | 'ADD_TIME'=>'开通时间', 10 | 'LAST_TIME'=>'上次登陆', 11 | 'STATUS'=>'状态', 12 | 'OPERATIONAL'=>'操作' 13 | ); 14 | ?> 15 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/article.php: -------------------------------------------------------------------------------- 1 | '资讯分类', 4 | 'TITLE' => '标题名称', 5 | 'SORT' => '排序', 6 | 'URL'=>'链接地址', 7 | 'CATE_ID'=>'所属分类', 8 | 'ORIG'=>'内容来源', 9 | 'IMG'=>'图片', 10 | 'ABST'=>'摘要简介', 11 | 'TIME'=>'发布时间 ', 12 | 'INFO'=>'详细内容', 13 | 'IS_HOT'=>'热门推荐', 14 | 'STATUS'=>'状态', 15 | 'ORDID'=>'排序', 16 | 'RECOMMEND'=>'推荐', 17 | 'HOT'=>'热门', 18 | ); 19 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/articlecate.php: -------------------------------------------------------------------------------- 1 | '上级分类', 4 | 'NAME' => '分类名称', 5 | 'ALIAS' => '分类别名', 6 | 'SORT_ORDER' => '排序', 7 | 'STATUS'=>'状态', 8 | 'ID'=>'分类ID', 9 | 'ARTILE_NUM'=>'资讯数', 10 | 'SORT'=>'排序值', 11 | 'STATUS'=>'审核', 12 | ); 13 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/flink.php: -------------------------------------------------------------------------------- 1 | '链接分类', 4 | 'NAME' => '链接名称', 5 | 'URL' => '链接地址', 6 | 'IMG'=>'图片', 7 | 'ORDID'=>'排序值', 8 | 'STATUS'=>'审核状态 ' 9 | ); 10 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/group.php: -------------------------------------------------------------------------------- 1 | '菜单分类名称', 4 | 'GROUP_NAME' => '分类标识', 5 | 'SORT' => '排序', 6 | 'STATE'=>'审核状态', 7 | 'GROUP_TITLE_REQUIRE'=>'菜单分类名称不能为空', 8 | 'GROUP_SORT_NUM'=>'排序必须是数字', 9 | 'GROUP_TITLE_EXIST'=>'菜单分类名称已经存在', 10 | 'NO_DELETE_GROUP'=>'请选择要删除的分类', 11 | ); 12 | ?> 13 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/nav.php: -------------------------------------------------------------------------------- 1 | '导航名称', 4 | 'ALIAS' => '导航别名', 5 | 'URL'=>'导航URL', 6 | 'TYPE'=>'导航位置', 7 | 'IS_SHOW'=>'是否显示', 8 | 'IN_SITE'=>'站内链接', 9 | 'SORT_ORDER'=>'排序值', 10 | 'AD_FLASH'=>'广告动画', 11 | 'START_TIME'=>'开始时间', 12 | 'END_TIME'=>'结束时间', 13 | 'STATUS'=>'状态', 14 | 'ID'=>'ID', 15 | 'CLICKS'=>'点击量', 16 | 'ORDID'=>'排序', 17 | 'OPERATIONAL'=>'操作' , 18 | 'CATEGORY'=>'所属分类' 19 | ); 20 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/node.php: -------------------------------------------------------------------------------- 1 | '模型 ', 4 | 'MODULE_NAME' => '模型名称', 5 | 'ACTION'=>'操作', 6 | 'ACTION_NAME'=>'操作名称', 7 | 'AUTH_TYPE'=>'节点类型', 8 | 'GROUP_ID'=>'分组', 9 | 'DATA'=>'参数', 10 | 'REMARK'=>'', 11 | 'SORT'=>'排序', 12 | 'STATUS'=>'状态', 13 | 'OPERATIONAL'=>'操作', 14 | 'ID'=>'ID', 15 | 'REMARK'=>'描述' 16 | ); 17 | ?> 18 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/role.php: -------------------------------------------------------------------------------- 1 | '管理员组名', 4 | 'REMARK' => '描述', 5 | 'ID'=>'ID', 6 | 'STATUS'=>'状态', 7 | 'OPERATIONAL'=>'操作' 8 | ); 9 | ?> 10 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/sellercate.php: -------------------------------------------------------------------------------- 1 | '分类名称', 4 | 'SORT' => '排序', 5 | 'STATE'=>'状态', 6 | ); 7 | ?> 8 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/sellerlist.php: -------------------------------------------------------------------------------- 1 | '商家名称', 4 | 'SORT' => '排序', 5 | 'LOGO'=>'LOGO', 6 | 'STATE'=>'状态', 7 | 'URL'=>'跳转URL', 8 | 'SERVICES'=>'SERVICES', 9 | 'DESCRIPTION'=>'商家描述', 10 | 'ADDB2CDATA'=>'增加B2C数据', 11 | 'SITE_LOGO'=>'本 地LOGO', 12 | 'NET_LOGO'=>'网 络LOGO', 13 | 'URL'=>'跳转URL', 14 | 'RECOMMEND'=>'是否推荐', 15 | 'SERVICES'=>'特色服务', 16 | 'CASH_BACK_RATE'=>'返现率' 17 | ); 18 | ?> 19 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/setting.php: -------------------------------------------------------------------------------- 1 | 'ID', 4 | 'SITE_NAME' => '网站名称', 5 | 'SITE_DOMAIN' => '网站域名', 6 | 'SITE_TITLE'=>'网站标题', 7 | 'SITE_KEYWORD'=>'网站关键字', 8 | 'SITE_DESCRIPTION'=>'网站描述', 9 | 'SEARCH_WORDS'=>'热门搜索', 10 | 'SEARCH_WORDS'=>'热门搜索', 11 | 'REGISTER_SEND_MAIL'=>'用户注册发送邮件', 12 | 'IS_CASHBACK'=>'是否返现', 13 | 'CASHBACK_RATE'=>'返现比例', 14 | 'LOWEST_GET_CASH'=>'最低提现金额', 15 | 'LOWEST_GET_JIFEN_CASH'=>'最低提现积分', 16 | 'INTEGRALBACK_RATE'=>'反积分比例', 17 | 'SITE_ICP'=>'ICP证书号', 18 | 'STATISTICS_CODE'=>'统计代码', 19 | 'SITE_STATUS'=>'网站状态', 20 | 'CLOSED_REASON'=>'关闭说明', 21 | 'MAIL_SMTP'=>'邮件服务器', 22 | 'MAIL_PORT'=>'服务器端口', 23 | 'MAIL_FROMNAME'=>'发件人姓名', 24 | 'MAIL_USERNAME'=>'邮箱登录用户名', 25 | 'MAIL_PASSWORD'=>'邮箱登录密码', 26 | 'SORT'=>'排序', 27 | 'RECOMMEND'=>'推荐', 28 | 'STATUS'=>'审核', 29 | 'CHECK_CODE'=>'后台验证码', 30 | 'SITE_SHARE'=>'浮动分享代码', 31 | 'SITE_LOGO'=>'网站LOGO', 32 | 'SITE_INFO'=>'网站信息', 33 | 'MAIL_INFO'=>'邮件设置', 34 | 'SITE_STATUS'=>'站点信息', 35 | 'SITE_ATTACHMENT'=>'附件设置', 36 | 'ATTACHMENT_PATH'=>'附件保存位置', 37 | 'ATTACHMENT_TYPE'=>'附件类型', 38 | 'ATTACHMENT_SIZE'=>'附件大小', 39 | 'COMMENT_TIME'=>'评论时间' 40 | ); 41 | ?> 42 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/user.php: -------------------------------------------------------------------------------- 1 | '会员名称', 4 | 'RELNAME'=>'真实姓名', 5 | 'ALIPAY'=>'支付宝账号', 6 | 'MONEY' => '余额', 7 | 'INTEGRAL'=>'积分', 8 | 'EMAIL'=>'会员邮箱', 9 | 'SEX'=>'性别', 10 | 'IMG'=>'会员头像', 11 | 'BLOG'=>'个人网址', 12 | 'BRITHDAY'=>'出生日期', 13 | 'ADDRESS'=>'联系地址', 14 | 'INFO'=>'会员简介', 15 | 'STATUS'=>'会员状态', 16 | 'REG_TIME'=>'注册时间', 17 | 'QQ'=>'QQ', 18 | 'LAST_TIME'=>'最后登录', 19 | 'STATUS'=>'状态', 20 | 'OPERATIONAL'=>'操作', 21 | 'ID'=>'ID', 22 | 'USER_LOGIN_SCORE'=>'每日登录送积分', 23 | 'USER_REGISTER_SCORE'=>'注册送积分', 24 | 'SHARE_GOODS_SCORE'=>'发布商品送积分', 25 | 'DELETE_SHARE_GOODS_SCORE'=>'删除商品扣积分', 26 | 27 | ); 28 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/wfdefination.php: -------------------------------------------------------------------------------- 1 | '工作流分类', 4 | 'TITLE' => '标题名称', 5 | 'SORT' => '排序', 6 | 'URL'=>'链接地址', 7 | 'CATE_ID'=>'父分类', 8 | 'ORIG'=>'内容来源', 9 | 'IMG'=>'图片', 10 | 'ABST'=>'摘要简介', 11 | 'TIME'=>'发布时间 ', 12 | 'INFO'=>'详细内容', 13 | 'IS_HOT'=>'热门推荐', 14 | 'STATUS'=>'状态', 15 | 'ORDID'=>'排序', 16 | 'RECOMMEND'=>'推荐', 17 | 'HOT'=>'热门', 18 | 'handler'=>'辅助文件', 19 | ); 20 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/wfnode.php: -------------------------------------------------------------------------------- 1 | '工作流分类', 4 | 'node_index' => '节点序号', 5 | 'SORT' => '排序', 6 | 'URL'=>'链接地址', 7 | 'CATE_ID'=>'所属工作流', 8 | 'ORIG'=>'内容来源', 9 | 'IMG'=>'图片', 10 | 'ABST'=>'摘要简介', 11 | 'TIME'=>'发布时间 ', 12 | 'INFO'=>'详细内容', 13 | 'IS_HOT'=>'热门推荐', 14 | 'STATUS'=>'状态', 15 | 'ORDID'=>'排序', 16 | 'RECOMMEND'=>'推荐', 17 | 'HOT'=>'热门', 18 | 19 | 20 | 'node_type' => '节点类型', 21 | 'init_function' => '流程初始函数', 22 | 'run_function' => '流程运行函数', 23 | 'save_function'=>'流程保存函数', 24 | 'transit_function'=>'流程运转函数', 25 | 'prev_node_index'=>'前节点序号', 26 | 'next_node_index'=>'后节点序号', 27 | 'executor'=>'执行角色,组、人', 28 | 'execute_type'=>'执行类型', 29 | 'remind'=>'提醒 ', 30 | 'field'=>'可编辑函数', 31 | 'max_day'=>'最长时间', 32 | 33 | 34 | 35 | 36 | ); 37 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/wfprocess.php: -------------------------------------------------------------------------------- 1 | '工作流分类', 4 | 'process_desc' => '进程描述', 5 | 6 | 7 | 'START_USER' => '发起人', 8 | 'context' => '上下文', 9 | 'current_note_index' => '当前节点', 10 | 'start_time'=>'启动时间', 11 | 'transit_function'=>'流程运转函数', 12 | 'finish_time'=>'结束时间', 13 | 14 | 15 | ); 16 | ?> -------------------------------------------------------------------------------- /tp/admin/Lib/Action/IndexAction.class.php: -------------------------------------------------------------------------------- 1 | display('index'); 16 | } 17 | /*当前位置*/ 18 | public function current_pos() 19 | { 20 | $group_id = intval($_REQUEST['tag']); 21 | $menuid = intval($_REQUEST['menuid']); 22 | 23 | $r = M('node')->field('group_id,module_name,action_name')->where('id='.$menuid)->find(); 24 | if($r) 25 | { 26 | $group_id = $r['group_id']; 27 | } 28 | $group = M('group')->field('title')->where('id='.$group_id)->find(); 29 | if($group) 30 | { 31 | echo $group['title']; 32 | } 33 | if($r) 34 | { 35 | echo '->'.$r['module_name'].'->'.$r['action_name']; 36 | } 37 | exit; 38 | } 39 | 40 | } 41 | ?> -------------------------------------------------------------------------------- /tp/admin/Runtime/Cache/f416cf810dea4d3f6272237cf732402f.php: -------------------------------------------------------------------------------- 1 | $item): $mod = ($i % 2 );++$i;?>