在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → limesurvey问卷调查系统

limesurvey问卷调查系统

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:45.82M
  • 下载次数:12
  • 浏览次数:243
  • 发布时间:2022-08-08
  • 实例类别:PHP语言基础
  • 发 布 人:douglas962022
  • 文件格式:.rar
  • 所需积分:3
 相关标签: 问卷调查 MES rve ES 问卷

实例介绍

【实例简介】limesurvey问卷调查系统


LimeSurvey
是一款在线问卷管理系统,具有问卷的设计、修改、发布、回收和统计等多项功能。同时它也是一个开源软件,其最新版本的软件包可以完全免费获取和使用。它集成了调查程序开发、调查问卷的发布以及数据收集等功能,使用它,用户不必了解这些功能的编程细节。 网上收集的调查数据可以导出多种文件格式以便分析,例如 spss数据格式 *.dat文件。

limesurvye重要特点

1、LimeSurvey是一个基于WEB的投票系统,它支持MySQL/PostgreSQL

2、LimeSurvey总计有49种语言/方言版本,它使用UTF-8字符集(易于国际化)。这些版本主要包括:阿尔巴尼亚,巴斯克语,中文,克罗地亚,丹麦语,荷兰语,芬兰语,法语,加利西亚语,德语,希腊语,匈牙利语,希伯来语,意大利语,日语,葡萄牙语,俄语,塞尔维亚语,斯洛文尼亚语,西班牙语,瑞典语,以及其他一些不完全的翻译版本。

LimeSurvey v2.0 alpha 并不是一个完全重写的版本,但添加了很多新的功能。



【实例截图】

from clipboard
【核心代码】

.
├── LimeSurvey-5.3.16-220523
│   ├── LICENSE
│   ├── README.md
│   ├── SECURITY.md
│   ├── admin
│   │   ├── admin.php
│   │   └── index.php
│   ├── application
│   │   ├── commands
│   │   │   ├── CompileAssetsCommand.php
│   │   │   ├── DbSeederCommand.php
│   │   │   ├── DemomodeCommand.php
│   │   │   ├── FlushAssetsCommand.php
│   │   │   ├── InstallCommand.php
│   │   │   ├── InstallFromConfigCommand.php
│   │   │   ├── PluginCommand.php
│   │   │   ├── ResetPasswordCommand.php
│   │   │   ├── TwigCommand.php
│   │   │   ├── UpdateDbCommand.php
│   │   │   ├── WipeCommand.php
│   │   │   ├── console.php
│   │   │   └── starter.php
│   │   ├── config
│   │   │   ├── config-defaults.php
│   │   │   ├── config-sample-dblib.php
│   │   │   ├── config-sample-mysql.php
│   │   │   ├── config-sample-pgsql.php
│   │   │   ├── config-sample-sqlsrv.php
│   │   │   ├── console.php
│   │   │   ├── email.php
│   │   │   ├── fonts.php
│   │   │   ├── index.html
│   │   │   ├── internal.php
│   │   │   ├── ldap.php
│   │   │   ├── packages.php
│   │   │   ├── questiontypes.php
│   │   │   ├── routes.php
│   │   │   ├── tcpdf.php
│   │   │   ├── third_party.php
│   │   │   ├── updater_version.php
│   │   │   └── version.php
│   │   ├── controllers
│   │   │   ├── AdminController.php
│   │   │   ├── AssessmentController.php
│   │   │   ├── HomepageSettingsController.php
│   │   │   ├── InstallerController.php
│   │   │   ├── LSBaseController.php
│   │   │   ├── LimereplacementfieldsController.php
│   │   │   ├── OptinController.php
│   │   │   ├── OptoutController.php
│   │   │   ├── PluginsController.php
│   │   │   ├── PrintanswersController.php
│   │   │   ├── QuestionAdministrationController.php
│   │   │   ├── QuestionGroupsAdministrationController.php
│   │   │   ├── RegisterController.php
│   │   │   ├── ResponsesController.php
│   │   │   ├── StatisticsUserController.php
│   │   │   ├── SurveyAdministrationController.php
│   │   │   ├── SurveyController.php
│   │   │   ├── SurveysController.php
│   │   │   ├── SurveysGroupsPermissionController.php
│   │   │   ├── ThemeOptionsController.php
│   │   │   ├── UploaderController.php
│   │   │   ├── UserGroupController.php
│   │   │   ├── UserManagementController.php
│   │   │   ├── UserRoleController.php
│   │   │   ├── VerificationController.php
│   │   │   ├── admin
│   │   │   ├── index.html
│   │   │   └── survey
│   │   ├── core
│   │   │   ├── AuthPluginBase.php
│   │   │   ├── ConsoleApplication.php
│   │   │   ├── ConsoleHttpSession.php
│   │   │   ├── LSAuthResult.php
│   │   │   ├── LSBootstrap.php
│   │   │   ├── LSCActiveDataProvider.php
│   │   │   ├── LSCaptcha.php
│   │   │   ├── LSDbCriteria.php
│   │   │   ├── LSETwigViewRenderer.php
│   │   │   ├── LSFileHelper.php
│   │   │   ├── LSHttpRequest.php
│   │   │   ├── LSJsonException.php
│   │   │   ├── LSMessageSource.php
│   │   │   ├── LSSodium.php
│   │   │   ├── LSSodiumOld.php
│   │   │   ├── LSUserIdentity.php
│   │   │   ├── LSWebUser.php
│   │   │   ├── LSYii_Application.php
│   │   │   ├── LSYii_AssetManager.php
│   │   │   ├── LSYii_CaseValidator.php
│   │   │   ├── LSYii_ClientScript.php
│   │   │   ├── LSYii_CompareInsensitiveValidator.php
│   │   │   ├── LSYii_Controller.php
│   │   │   ├── LSYii_EmailIDNAValidator.php
│   │   │   ├── LSYii_HtmlPurifier.php
│   │   │   ├── LSYii_ImageValidator.php
│   │   │   ├── LSYii_Locale.php
│   │   │   ├── LSYii_NoUpdateValidator.php
│   │   │   ├── LSYii_Validators.php
│   │   │   ├── LS_Twig_Extension.php
│   │   │   ├── LimeMailer.php
│   │   │   ├── LsDefaultDataSets.php
│   │   │   ├── PluginBase.php
│   │   │   ├── PluginEvent.php
│   │   │   ├── PluginManager.php
│   │   │   ├── QuestionTypes
│   │   │   ├── StaticModel.php
│   │   │   ├── SurveyCommonAction.php
│   │   │   ├── TopbarConfiguration.php
│   │   │   ├── WrongTemplateVersionException.php
│   │   │   ├── db
│   │   │   ├── plugins
│   │   │   ├── utils
│   │   │   └── web
│   │   ├── datavalueobjects
│   │   │   ├── BlacklistResult.php
│   │   │   ├── CopyQuestionTextValues.php
│   │   │   ├── CopyQuestionValues.php
│   │   │   ├── FormElement.php
│   │   │   ├── GeneralOption.php
│   │   │   ├── SimpleSurveyValues.php
│   │   │   ├── SwitchOption.php
│   │   │   ├── ThemeFileCategory.php
│   │   │   └── ThemeFileInfo.php
│   │   ├── errors
│   │   │   ├── error_404.php
│   │   │   ├── error_db.php
│   │   │   ├── error_general.php
│   │   │   ├── error_php.php
│   │   │   └── index.html
│   │   ├── exceptions
│   │   │   └── CPDBException.php
│   │   ├── extensions
│   │   │   ├── AdminFooter
│   │   │   ├── AdvancedSettingWidget
│   │   │   ├── CallbackColumn.php
│   │   │   ├── CustomFormatter.php
│   │   │   ├── FlashMessage
│   │   │   ├── GeneralOptionWidget
│   │   │   ├── GridViewWidget.php
│   │   │   ├── LimeDebug
│   │   │   ├── LimeGridView
│   │   │   ├── LimeScript
│   │   │   ├── PanelBoxWidget
│   │   │   ├── SettingsWidget
│   │   │   ├── TopbarWidget
│   │   │   ├── UserPermissionsWidget
│   │   │   ├── admin
│   │   │   ├── bootstrap
│   │   │   ├── captchaExtended
│   │   │   ├── yii-jsoneditor
│   │   │   └── yiiwheels
│   │   ├── favicon.ico
│   │   ├── helpers
│   │   │   ├── ClassFactory.php
│   │   │   ├── Hash.php
│   │   │   ├── LayoutHelper.php
│   │   │   ├── SurveyRuntimeHelper.php
│   │   │   ├── SurveyThemeHelper.php
│   │   │   ├── Zend
│   │   │   ├── admin
│   │   │   ├── adodb
│   │   │   ├── common_helper.php
│   │   │   ├── database_helper.php
│   │   │   ├── export_helper.php
│   │   │   ├── expressions
│   │   │   ├── frontend_helper.php
│   │   │   ├── globals.php
│   │   │   ├── globalsettings_helper.php
│   │   │   ├── index.html
│   │   │   ├── ldap_helper.php
│   │   │   ├── pdfHelper.php
│   │   │   ├── qanda_helper.php
│   │   │   ├── questionHelper.php
│   │   │   ├── questionIndexHelper.php
│   │   │   ├── remotecontrol
│   │   │   ├── replacements_helper.php
│   │   │   ├── sanitize_helper.php
│   │   │   ├── surveytranslator_helper.php
│   │   │   ├── twig_translation_helper.php
│   │   │   ├── update
│   │   │   ├── userstatistics_helper.php
│   │   │   └── viewHelper.php
│   │   ├── index.html
│   │   ├── libraries
│   │   │   ├── BigData.php
│   │   │   ├── Date_Time_Converter.php
│   │   │   ├── ExtensionInstaller
│   │   │   ├── LSZend_XmlRpc_Response_Http.php
│   │   │   ├── LSjsonRPCServer.php
│   │   │   ├── MenuObjects
│   │   │   ├── MersenneTwister.php
│   │   │   ├── PluginManager
│   │   │   ├── Save.php
│   │   │   ├── admin
│   │   │   ├── index.html
│   │   │   ├── jsonRPCClient.php
│   │   │   ├── jsonRPCServer.php
│   │   │   └── simpletester.php
│   │   ├── logs
│   │   │   └── index.html
│   │   ├── models
│   │   │   ├── AdminTheme.php
│   │   │   ├── Answer.php
│   │   │   ├── AnswerL10n.php
│   │   │   ├── ArchivedTableSettings.php
│   │   │   ├── Assessment.php
│   │   │   ├── AssetVersion.php
│   │   │   ├── Box.php
│   │   │   ├── Condition.php
│   │   │   ├── DefaultValue.php
│   │   │   ├── DefaultValueL10n.php
│   │   │   ├── Dynamic.php
│   │   │   ├── ExpressionError.php
│   │   │   ├── ExtensionConfig.php
│   │   │   ├── ExtensionUpdateInfo.php
│   │   │   ├── FailedLoginAttempt.php
│   │   │   ├── InstallerConfigForm.php
│   │   │   ├── Interfaces
│   │   │   ├── LSActiveRecord.php
│   │   │   ├── Label.php
│   │   │   ├── LabelL10n.php
│   │   │   ├── LabelSet.php
│   │   │   ├── MapTutorialUsers.php
│   │   │   ├── Notification.php
│   │   │   ├── Participant.php
│   │   │   ├── ParticipantAttribute.php
│   │   │   ├── ParticipantAttributeName.php
│   │   │   ├── ParticipantAttributeNameLang.php
│   │   │   ├── ParticipantShare.php
│   │   │   ├── Permission.php
│   │   │   ├── Permissiontemplates.php
│   │   │   ├── Plugin.php
│   │   │   ├── PluginDynamic.php
│   │   │   ├── PluginSetting.php
│   │   │   ├── Question.php
│   │   │   ├── QuestionAttribute.php
│   │   │   ├── QuestionBaseDataSet.php
│   │   │   ├── QuestionBaseRenderer.php
│   │   │   ├── QuestionCreate.php
│   │   │   ├── QuestionGroup.php
│   │   │   ├── QuestionGroupL10n.php
│   │   │   ├── QuestionL10n.php
│   │   │   ├── QuestionTemplate.php
│   │   │   ├── QuestionTheme.php
│   │   │   ├── QuestionType.php
│   │   │   ├── Quota.php
│   │   │   ├── QuotaLanguageSetting.php
│   │   │   ├── QuotaMember.php
│   │   │   ├── Response.php
│   │   │   ├── SavedControl.php
│   │   │   ├── Session.php
│   │   │   ├── SettingGlobal.php
│   │   │   ├── SettingsUser.php
│   │   │   ├── Survey.php
│   │   │   ├── SurveyActivator.php
│   │   │   ├── SurveyDynamic.php
│   │   │   ├── SurveyLanguageSetting.php
│   │   │   ├── SurveyLink.php
│   │   │   ├── SurveyTimingDynamic.php
│   │   │   ├── SurveyURLParameter.php
│   │   │   ├── Surveymenu.php
│   │   │   ├── SurveymenuEntries.php
│   │   │   ├── SurveymenuEntryData.php
│   │   │   ├── SurveysGroups.php
│   │   │   ├── SurveysGroupsettings.php
│   │   │   ├── SurveysInGroup.php
│   │   │   ├── Template.php
│   │   │   ├── TemplateConfig.php
│   │   │   ├── TemplateConfiguration.php
│   │   │   ├── TemplateManifest.php
│   │   │   ├── Timing.php
│   │   │   ├── Token.php
│   │   │   ├── TokenDynamic.php
│   │   │   ├── Traits
│   │   │   ├── Tutorial.php
│   │   │   ├── TutorialEntry.php
│   │   │   ├── TutorialEntryRelation.php
│   │   │   ├── UniqueNotification.php
│   │   │   ├── UpdateForm.php
│   │   │   ├── User.php
│   │   │   ├── UserGroup.php
│   │   │   ├── UserInGroup.php
│   │   │   ├── UserInPermissionrole.php
│   │   │   ├── UserParser.php
│   │   │   ├── behaviors
│   │   │   ├── index.html
│   │   │   └── services
│   │   ├── third_party
│   │   │   ├── ar-php
│   │   │   ├── gtranslate-api
│   │   │   ├── html2text
│   │   │   ├── index.html
│   │   │   ├── pchart
│   │   │   ├── pclzip
│   │   │   ├── pear
│   │   │   ├── phpmailer
│   │   │   ├── tcpdf
│   │   │   └── xlsx_writer
│   │   └── views
│   │       ├── SurveysGroupsPermission
│   │       ├── admin
│   │       ├── assessment
│   │       ├── homepageSettings
│   │       ├── index.html
│   │       ├── installer
│   │       ├── layouts
│   │       ├── limereplacementfields
│   │       ├── opt_view.php
│   │       ├── questionAdministration
│   │       ├── questionGroupsAdministration
│   │       ├── responses
│   │       ├── statistics_user_view.php
│   │       ├── survey
│   │       ├── surveyAdministration
│   │       ├── survey_view.php
│   │       ├── surveys
│   │       ├── themeOptions
│   │       ├── userGroup
│   │       ├── userManagement
│   │       └── userRole
│   ├── assets
│   │   ├── fonts
│   │   │   ├── DejaVu Fonts License.txt
│   │   │   ├── DejaVuSans-Bold.ttf
│   │   │   ├── DejaVuSans-BoldOblique.ttf
│   │   │   ├── DejaVuSans-ExtraLight.ttf
│   │   │   ├── DejaVuSans-Oblique.ttf
│   │   │   ├── DejaVuSans.ttf
│   │   │   ├── DejaVuSansCondensed-Bold.ttf
│   │   │   ├── DejaVuSansCondensed-BoldOblique.ttf
│   │   │   ├── DejaVuSansCondensed-Oblique.ttf
│   │   │   ├── DejaVuSansCondensed.ttf
│   │   │   ├── FreeSans - CREDITS
│   │   │   ├── FreeSans.ttf
│   │   │   ├── TlwgTypist - Thai.ttf.txt
│   │   │   ├── UnBatang - Korean.ttf.txt
│   │   │   ├── fireflysung - Chinese.ttf.txt
│   │   │   ├── font-src
│   │   │   ├── icomoon.css
│   │   │   ├── lato.css
│   │   │   ├── migmix-1p-regular - Japanese.ttf.txt
│   │   │   ├── news_cycle.css
│   │   │   ├── noto.css
│   │   │   ├── roboto.css
│   │   │   ├── ubuntu.css
│   │   │   └── websafe.css
│   │   ├── images
│   │   │   ├── Limesurvey_logo-big.png
│   │   │   ├── Logo_LimeSurvey.png
│   │   │   ├── __Limesurvey_logo.png
│   │   │   ├── caret-down.png
│   │   │   ├── cut.gif
│   │   │   ├── emoticons
│   │   │   ├── help.gif
│   │   │   ├── limecursor-handle.png
│   │   │   ├── screenshots
│   │   │   ├── slider-bg-1.png
│   │   │   ├── slider-bg-2.png
│   │   │   ├── slider-handle.gif
│   │   │   ├── slider-handle2.gif
│   │   │   ├── slider.png
│   │   │   ├── sliderBg.png
│   │   │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │   ├── ui-bg_flat_75_F8F8FF_40x100.png
│   │   │   ├── ui-bg_glass_100_effbdb_1x400.png
│   │   │   ├── ui-bg_glass_55_fbf9ee_1x400.png
│   │   │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │   │   ├── ui-bg_glass_75_EAF2FF_1x400.png
│   │   │   ├── ui-bg_glass_75_dadada_1x400.png
│   │   │   ├── ui-bg_highlight-soft_75_F8F8FF_1x100.png
│   │   │   ├── ui-bg_inset-soft_95_fef1ec_1x100.png
│   │   │   ├── ui-icons_222222_256x240.png
│   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   ├── ui-icons_328639_256x240.png
│   │   │   ├── ui-icons_454545_256x240.png
│   │   │   ├── ui-icons_888888_256x240.png
│   │   │   └── ui-icons_cd0a0a_256x240.png
│   │   ├── packages
│   │   │   ├── adminbasics
│   │   │   ├── adminsidepanel
│   │   │   ├── bootstrap
│   │   │   ├── ckeditor
│   │   │   ├── ckeditoradditions
│   │   │   ├── decimalcustom
│   │   │   ├── emailtemplates
│   │   │   ├── embeddables
│   │   │   ├── expressions
│   │   │   ├── expressionscript
│   │   │   ├── globalsidepanel
│   │   │   ├── limesurvey
│   │   │   ├── lslog
│   │   │   ├── lstutorial
│   │   │   ├── meta
│   │   │   ├── modaleditor
│   │   │   ├── panelboxes
│   │   │   ├── permissionroles
│   │   │   ├── pjax
│   │   │   ├── printable
│   │   │   ├── questions
│   │   │   ├── surveymenufunctions
│   │   │   ├── surveysummary
│   │   │   ├── template-core
│   │   │   ├── themeoptions-core
│   │   │   └── usermanagement
│   │   ├── scripts
│   │   │   ├── Google.js
│   │   │   ├── admin
│   │   │   ├── array-number-checkbox.js
│   │   │   ├── array-totalsum.js
│   │   │   ├── coookies.js
│   │   │   ├── date.js
│   │   │   ├── dualscale.js
│   │   │   ├── jquery.multiselect.min.js
│   │   │   ├── jquery.rating.js
│   │   │   ├── map.js
│   │   │   ├── multiplechoice_withcomments.js
│   │   │   ├── navigator-countdown.js
│   │   │   ├── nojs.js
│   │   │   ├── statistics_user.js
│   │   │   ├── survey_runtime.js
│   │   │   ├── timer.js
│   │   │   └── uploader.js
│   │   └── styles-public
│   │       ├── browse.css
│   │       ├── emotes
│   │       ├── expressionlogicfile.css
│   │       ├── expressions.css
│   │       ├── images
│   │       ├── img
│   │       ├── jquery-ui-custom.css
│   │       ├── jquery-ui.css
│   │       ├── jquery.multiselect.css
│   │       ├── jquery.multiselect.filter.css
│   │       ├── jquery.rating.css
│   │       ├── map.css
│   │       ├── organize.css
│   │       └── printable.css
│   ├── docs
│   │   ├── PULL_REQUEST_TEMPLATE
│   │   ├── contributions
│   │   │   ├── browserstack-logo.png
│   │   │   ├── scrutinizer-logo.png
│   │   │   └── travisci-logo.png
│   │   ├── credits.txt
│   │   ├── demosurveys
│   │   │   ├── ls205_EM_question_attributes.lss
│   │   │   ├── ls205_array_filter_tests.lss
│   │   │   ├── ls205_cascading_array_filter.lss
│   │   │   ├── ls205_cascading_array_filter_exclude.lss
│   │   │   ├── ls205_comma_as_radix_separator.lss
│   │   │   ├── ls205_countifop_sumifop.lss
│   │   │   ├── ls205_em_tailoring.lss
│   │   │   ├── ls205_em_validation_q.lss
│   │   │   ├── ls205_group_relevance.lss
│   │   │   ├── ls205_maximum_chars_feature.lss
│   │   │   ├── ls205_plurals_test.lss
│   │   │   ├── ls205_randomization_group_test.lss
│   │   │   ├── ls205_sample_survey_english.lss
│   │   │   ├── ls205_self_and_that.lss
│   │   │   ├── ls205_subquestion_relevance.lss
│   │   │   ├── ls205_test_em_sq_validation.lss
│   │   │   ├── ls205_validation_tests.lss
│   │   │   ├── ls206_em_subquestion_relevance.lss
│   │   │   └── ls3_sample_survey_multilingual_fr_de_en_it.lss
│   │   ├── limesurvey-ruleset.xml
│   │   ├── release_notes.txt
│   │   └── themes
│   │       └── questiontheme_example
│   ├── framework
│   │   ├── LICENSE
│   │   ├── YiiBase.php
│   │   ├── base
│   │   │   ├── CApplication.php
│   │   │   ├── CApplicationComponent.php
│   │   │   ├── CBehavior.php
│   │   │   ├── CComponent.php
│   │   │   ├── CDbStatePersister.php
│   │   │   ├── CErrorEvent.php
│   │   │   ├── CErrorHandler.php
│   │   │   ├── CException.php
│   │   │   ├── CExceptionEvent.php
│   │   │   ├── CHttpException.php
│   │   │   ├── CModel.php
│   │   │   ├── CModelBehavior.php
│   │   │   ├── CModelEvent.php
│   │   │   ├── CModule.php
│   │   │   ├── CSecurityManager.php
│   │   │   ├── CStatePersister.php
│   │   │   └── interfaces.php
│   │   ├── caching
│   │   │   ├── CApcCache.php
│   │   │   ├── CCache.php
│   │   │   ├── CDbCache.php
│   │   │   ├── CDummyCache.php
│   │   │   ├── CEAcceleratorCache.php
│   │   │   ├── CFileCache.php
│   │   │   ├── CMemCache.php
│   │   │   ├── CRedisCache.php
│   │   │   ├── CWinCache.php
│   │   │   ├── CXCache.php
│   │   │   ├── CZendDataCache.php
│   │   │   └── dependencies
│   │   ├── cli
│   │   │   ├── commands
│   │   │   └── views
│   │   ├── collections
│   │   │   ├── CAttributeCollection.php
│   │   │   ├── CConfiguration.php
│   │   │   ├── CList.php
│   │   │   ├── CListIterator.php
│   │   │   ├── CMap.php
│   │   │   ├── CMapIterator.php
│   │   │   ├── CQueue.php
│   │   │   ├── CQueueIterator.php
│   │   │   ├── CStack.php
│   │   │   ├── CStackIterator.php
│   │   │   ├── CTypedList.php
│   │   │   └── CTypedMap.php
│   │   ├── console
│   │   │   ├── CConsoleApplication.php
│   │   │   ├── CConsoleCommand.php
│   │   │   ├── CConsoleCommandBehavior.php
│   │   │   ├── CConsoleCommandEvent.php
│   │   │   ├── CConsoleCommandRunner.php
│   │   │   └── CHelpCommand.php
│   │   ├── db
│   │   │   ├── CDbCommand.php
│   │   │   ├── CDbConnection.php
│   │   │   ├── CDbDataReader.php
│   │   │   ├── CDbException.php
│   │   │   ├── CDbMigration.php
│   │   │   ├── CDbTransaction.php
│   │   │   ├── ar
│   │   │   └── schema
│   │   ├── gii
│   │   │   ├── CCodeFile.php
│   │   │   ├── CCodeForm.php
│   │   │   ├── CCodeGenerator.php
│   │   │   ├── CCodeModel.php
│   │   │   ├── GiiModule.php
│   │   │   ├── assets
│   │   │   ├── components
│   │   │   ├── controllers
│   │   │   ├── generators
│   │   │   ├── models
│   │   │   └── views
│   │   ├── i18n
│   │   │   ├── CChoiceFormat.php
│   │   │   ├── CDateFormatter.php
│   │   │   ├── CDbMessageSource.php
│   │   │   ├── CGettextMessageSource.php
│   │   │   ├── CLocale.php
│   │   │   ├── CMessageSource.php
│   │   │   ├── CNumberFormatter.php
│   │   │   ├── CPhpMessageSource.php
│   │   │   ├── data
│   │   │   └── gettext
│   │   ├── logging
│   │   │   ├── CChainedLogFilter.php
│   │   │   ├── CDbLogRoute.php
│   │   │   ├── CEmailLogRoute.php
│   │   │   ├── CFileLogRoute.php
│   │   │   ├── CLogFilter.php
│   │   │   ├── CLogRoute.php
│   │   │   ├── CLogRouter.php
│   │   │   ├── CLogger.php
│   │   │   ├── CProfileLogRoute.php
│   │   │   ├── CSysLogRoute.php
│   │   │   └── CWebLogRoute.php
│   │   ├── messages
│   │   │   ├── ar
│   │   │   ├── bg
│   │   │   ├── bs
│   │   │   ├── ca
│   │   │   ├── config.php
│   │   │   ├── cs
│   │   │   ├── da
│   │   │   ├── de
│   │   │   ├── el
│   │   │   ├── es
│   │   │   ├── fa_ir
│   │   │   ├── fi
│   │   │   ├── fr
│   │   │   ├── he
│   │   │   ├── hr
│   │   │   ├── hu
│   │   │   ├── id
│   │   │   ├── it
│   │   │   ├── ja
│   │   │   ├── kk
│   │   │   ├── ko_kr
│   │   │   ├── lt
│   │   │   ├── lv
│   │   │   ├── nl
│   │   │   ├── no
│   │   │   ├── pl
│   │   │   ├── pt
│   │   │   ├── pt_br
│   │   │   ├── ro
│   │   │   ├── ru
│   │   │   ├── sk
│   │   │   ├── sr_sr
│   │   │   ├── sr_yu
│   │   │   ├── sv
│   │   │   ├── ta_in
│   │   │   ├── th
│   │   │   ├── tr
│   │   │   ├── uk
│   │   │   ├── vi
│   │   │   ├── zh_cn
│   │   │   └── zh_tw
│   │   ├── test
│   │   │   ├── CDbFixtureManager.php
│   │   │   ├── CDbTestCase.php
│   │   │   ├── CTestCase.php
│   │   │   └── CWebTestCase.php
│   │   ├── utils
│   │   │   ├── CDateTimeParser.php
│   │   │   ├── CFileHelper.php
│   │   │   ├── CFormatter.php
│   │   │   ├── CLocalizedFormatter.php
│   │   │   ├── CMarkdownParser.php
│   │   │   ├── CPasswordHelper.php
│   │   │   ├── CPropertyValue.php
│   │   │   ├── CTimestamp.php
│   │   │   ├── CVarDumper.php
│   │   │   ├── fileExtensions.php
│   │   │   └── mimeTypes.php
│   │   ├── validators
│   │   │   ├── CBooleanValidator.php
│   │   │   ├── CCaptchaValidator.php
│   │   │   ├── CCompareValidator.php
│   │   │   ├── CDateValidator.php
│   │   │   ├── CDefaultValueValidator.php
│   │   │   ├── CEmailValidator.php
│   │   │   ├── CExistValidator.php
│   │   │   ├── CFileValidator.php
│   │   │   ├── CFilterValidator.php
│   │   │   ├── CInlineValidator.php
│   │   │   ├── CNumberValidator.php
│   │   │   ├── CRangeValidator.php
│   │   │   ├── CRegularExpressionValidator.php
│   │   │   ├── CRequiredValidator.php
│   │   │   ├── CSafeValidator.php
│   │   │   ├── CStringValidator.php
│   │   │   ├── CTypeValidator.php
│   │   │   ├── CUniqueValidator.php
│   │   │   ├── CUnsafeValidator.php
│   │   │   ├── CUrlValidator.php
│   │   │   └── CValidator.php
│   │   ├── vendors
│   │   │   ├── Net_IDNA2
│   │   │   ├── README.html
│   │   │   ├── TextHighlighter
│   │   │   ├── adodb
│   │   │   ├── bbq
│   │   │   ├── cldr
│   │   │   ├── console-normalizer
│   │   │   ├── gettext
│   │   │   ├── history
│   │   │   ├── htmlpurifier
│   │   │   ├── jquery
│   │   │   ├── jqueryui
│   │   │   ├── json
│   │   │   ├── markdown
│   │   │   ├── punycode
│   │   │   └── zend-escaper
│   │   ├── views
│   │   │   ├── ar
│   │   │   ├── bg
│   │   │   ├── ca
│   │   │   ├── da
│   │   │   ├── de
│   │   │   ├── el
│   │   │   ├── error.php
│   │   │   ├── error400.php
│   │   │   ├── error403.php
│   │   │   ├── error404.php
│   │   │   ├── error500.php
│   │   │   ├── error503.php
│   │   │   ├── es
│   │   │   ├── exception.php
│   │   │   ├── fi
│   │   │   ├── fr
│   │   │   ├── he
│   │   │   ├── hr
│   │   │   ├── id
│   │   │   ├── it
│   │   │   ├── ja
│   │   │   ├── ko
│   │   │   ├── log-firebug.php
│   │   │   ├── log.php
│   │   │   ├── lt
│   │   │   ├── lv
│   │   │   ├── nl
│   │   │   ├── no
│   │   │   ├── pl
│   │   │   ├── profile-callstack-firebug.php
│   │   │   ├── profile-callstack.php
│   │   │   ├── profile-summary-firebug.php
│   │   │   ├── profile-summary.php
│   │   │   ├── pt
│   │   │   ├── pt_br
│   │   │   ├── ro
│   │   │   ├── ru
│   │   │   ├── sk
│   │   │   ├── sv
│   │   │   ├── uk
│   │   │   ├── vi
│   │   │   ├── zh_cn
│   │   │   └── zh_tw
│   │   ├── web
│   │   │   ├── CActiveDataProvider.php
│   │   │   ├── CArrayDataProvider.php
│   │   │   ├── CAssetManager.php
│   │   │   ├── CBaseController.php
│   │   │   ├── CCacheHttpSession.php
│   │   │   ├── CClientScript.php
│   │   │   ├── CController.php
│   │   │   ├── CDataProvider.php
│   │   │   ├── CDataProviderIterator.php
│   │   │   ├── CDbHttpSession.php
│   │   │   ├── CExtController.php
│   │   │   ├── CFormModel.php
│   │   │   ├── CHttpCookie.php
│   │   │   ├── CHttpRequest.php
│   │   │   ├── CHttpSession.php
│   │   │   ├── CHttpSessionIterator.php
│   │   │   ├── COutputEvent.php
│   │   │   ├── CPagination.php
│   │   │   ├── CSort.php
│   │   │   ├── CSqlDataProvider.php
│   │   │   ├── CTheme.php
│   │   │   ├── CThemeManager.php
│   │   │   ├── CUploadedFile.php
│   │   │   ├── CUrlManager.php
│   │   │   ├── CWebApplication.php
│   │   │   ├── CWebModule.php
│   │   │   ├── CWidgetFactory.php
│   │   │   ├── actions
│   │   │   ├── auth
│   │   │   ├── filters
│   │   │   ├── form
│   │   │   ├── helpers
│   │   │   ├── js
│   │   │   ├── renderers
│   │   │   ├── services
│   │   │   └── widgets
│   │   ├── yii-powered.png
│   │   ├── yii.php
│   │   ├── yiic
│   │   ├── yiic.bat
│   │   ├── yiic.php
│   │   ├── yiilite.php
│   │   ├── yiit.php
│   │   └── zii
│   │       ├── behaviors
│   │       └── widgets
│   ├── index.php
│   ├── installer
│   │   ├── create-database.php
│   │   ├── css
│   │   │   ├── fonts.css
│   │   │   ├── main.css
│   │   │   └── style.css
│   │   ├── images
│   │   │   ├── bkgmaintitle.gif
│   │   │   ├── next.jpg
│   │   │   ├── poweredby.png
│   │   │   ├── previous.jpg
│   │   │   ├── tick-right.png
│   │   │   └── tick-wrong.png
│   │   └── sql-old
│   │       ├── create-mssql.sql
│   │       ├── create-mysql.sql
│   │       ├── create-pgsql.sql
│   │       └── create-pgsql_compare.sql
│   ├── locale
│   │   ├── _template
│   │   │   └── limesurvey.pot
│   │   ├── af
│   │   │   ├── af.mo
│   │   │   └── index.html
│   │   ├── am
│   │   │   ├── am.mo
│   │   │   └── index.html
│   │   ├── ar
│   │   │   ├── ar.mo
│   │   │   └── index.html
│   │   ├── az
│   │   │   ├── az.mo
│   │   │   └── index.html
│   │   ├── be
│   │   │   ├── be.mo
│   │   │   └── index.html
│   │   ├── bg
│   │   │   ├── bg.mo
│   │   │   └── index.html
│   │   ├── bn
│   │   │   ├── bn.mo
│   │   │   └── index.html
│   │   ├── bs
│   │   │   ├── bs.mo
│   │   │   └── index.html
│   │   ├── ca
│   │   │   ├── ca.mo
│   │   │   └── index.html
│   │   ├── ca-valencia
│   │   │   ├── ca-valencia.mo
│   │   │   └── index.html
│   │   ├── ceb
│   │   │   ├── ceb.mo
│   │   │   └── index.html
│   │   ├── ckb
│   │   │   ├── ckb.mo
│   │   │   └── index.html
│   │   ├── cnr
│   │   │   ├── cnr.mo
│   │   │   └── index.html
│   │   ├── cs
│   │   │   ├── cs.mo
│   │   │   └── index.html
│   │   ├── cs-informal
│   │   │   ├── cs-informal.mo
│   │   │   └── index.html
│   │   ├── cy
│   │   │   ├── cy.mo
│   │   │   └── index.html
│   │   ├── da
│   │   │   ├── da.mo
│   │   │   └── index.html
│   │   ├── de
│   │   │   ├── de.mo
│   │   │   └── index.html
│   │   ├── de-easy
│   │   │   ├── de-easy.mo
│   │   │   └── index.html
│   │   ├── de-informal
│   │   │   ├── de-informal.mo
│   │   │   └── index.html
│   │   ├── el
│   │   │   ├── el.mo
│   │   │   └── index.html
│   │   ├── en
│   │   │   ├── en.mo
│   │   │   └── index.html
│   │   ├── eo
│   │   │   └── index.html
│   │   ├── es
│   │   │   ├── es.mo
│   │   │   └── index.html
│   │   ├── es-AR
│   │   │   ├── es-AR.mo
│   │   │   └── index.html
│   │   ├── es-AR-informal
│   │   │   ├── es-AR-informal.mo
│   │   │   └── index.html
│   │   ├── es-CL
│   │   │   ├── es-CL.mo
│   │   │   └── index.html
│   │   ├── es-CO
│   │   │   ├── es-CO.mo
│   │   │   └── index.html
│   │   ├── es-MX
│   │   │   ├── es-MX.mo
│   │   │   └── index.html
│   │   ├── et
│   │   │   ├── et.mo
│   │   │   └── index.html
│   │   ├── eu
│   │   │   ├── eu.mo
│   │   │   └── index.html
│   │   ├── fa
│   │   │   ├── fa.mo
│   │   │   └── index.html
│   │   ├── fi
│   │   │   ├── fi.mo
│   │   │   └── index.html
│   │   ├── fil
│   │   │   └── fil.mo
│   │   ├── fr
│   │   │   ├── fr.mo
│   │   │   └── index.html
│   │   ├── ful
│   │   │   ├── ful.mo
│   │   │   └── index.html
│   │   ├── ga
│   │   │   ├── ga.mo
│   │   │   └── index.html
│   │   ├── gl
│   │   │   ├── gl.mo
│   │   │   └── index.html
│   │   ├── gu
│   │   │   ├── gu.mo
│   │   │   └── index.html
│   │   ├── he
│   │   │   ├── he.mo
│   │   │   └── index.html
│   │   ├── hi
│   │   │   ├── hi.mo
│   │   │   └── index.html
│   │   ├── hil
│   │   │   ├── hil.mo
│   │   │   └── index.html
│   │   ├── hr
│   │   │   ├── hr.mo
│   │   │   └── index.html
│   │   ├── hu
│   │   │   ├── hu.mo
│   │   │   └── index.html
│   │   ├── hy
│   │   │   ├── hy.mo
│   │   │   └── index.html
│   │   ├── id
│   │   │   ├── id.mo
│   │   │   └── index.html
│   │   ├── ike
│   │   │   ├── ike.mo
│   │   │   └── index.html
│   │   ├── ilo
│   │   │   ├── ilo.mo
│   │   │   └── index.html
│   │   ├── index.html
│   │   ├── is
│   │   │   ├── index.html
│   │   │   └── is.mo
│   │   ├── it
│   │   │   ├── index.html
│   │   │   └── it.mo
│   │   ├── it-informal
│   │   │   ├── index.html
│   │   │   └── it-informal.mo
│   │   ├── ja
│   │   │   ├── index.html
│   │   │   └── ja.mo
│   │   ├── ka
│   │   │   ├── index.html
│   │   │   └── ka.mo
│   │   ├── kal
│   │   │   ├── index.html
│   │   │   └── kal.mo
│   │   ├── kk
│   │   │   ├── index.html
│   │   │   └── kk.mo
│   │   ├── kmr
│   │   │   ├── index.html
│   │   │   └── kmr.mo
│   │   ├── kn
│   │   │   ├── index.html
│   │   │   └── kn.mo
│   │   ├── ko
│   │   │   ├── index.html
│   │   │   └── ko.mo
│   │   ├── ky
│   │   │   ├── index.html
│   │   │   └── ky.mo
│   │   ├── lb
│   │   │   ├── index.html
│   │   │   └── lb.mo
│   │   ├── lt
│   │   │   ├── index.html
│   │   │   └── lt.mo
│   │   ├── lv
│   │   │   ├── index.html
│   │   │   └── lv.mo
│   │   ├── mk
│   │   │   ├── index.html
│   │   │   └── mk.mo
│   │   ├── ml
│   │   │   ├── index.html
│   │   │   └── ml.mo
│   │   ├── mn
│   │   │   ├── index.html
│   │   │   └── mn.mo
│   │   ├── mr
│   │   │   ├── index.html
│   │   │   └── mr.mo
│   │   ├── ms
│   │   │   ├── index.html
│   │   │   └── ms.mo
│   │   ├── mt
│   │   │   ├── index.html
│   │   │   └── mt.mo
│   │   ├── mya
│   │   │   ├── index.html
│   │   │   └── mya.mo
│   │   ├── nb
│   │   │   ├── index.html
│   │   │   └── nb.mo
│   │   ├── nl
│   │   │   ├── index.html
│   │   │   └── nl.mo
│   │   ├── nl-informal
│   │   │   ├── index.html
│   │   │   └── nl-informal.mo
│   │   ├── nn
│   │   │   ├── index.html
│   │   │   └── nn.mo
│   │   ├── ny
│   │   │   ├── index.html
│   │   │   └── ny.mo
│   │   ├── oc
│   │   │   ├── index.html
│   │   │   └── oc.mo
│   │   ├── pa
│   │   │   ├── index.html
│   │   │   └── pa.mo
│   │   ├── pap-CW
│   │   │   ├── index.html
│   │   │   └── pap-CW.mo
│   │   ├── pl
│   │   │   ├── index.html
│   │   │   └── pl.mo
│   │   ├── pl-informal
│   │   │   ├── index.html
│   │   │   └── pl-informal.mo
│   │   ├── prs
│   │   │   ├── index.html
│   │   │   └── prs.mo
│   │   ├── ps
│   │   │   ├── index.html
│   │   │   └── ps.mo
│   │   ├── pt
│   │   │   ├── index.html
│   │   │   └── pt.mo
│   │   ├── pt-BR
│   │   │   ├── index.html
│   │   │   └── pt-BR.mo
│   │   ├── ro
│   │   │   ├── index.html
│   │   │   └── ro.mo
│   │   ├── roh
│   │   │   ├── index.html
│   │   │   └── roh.mo
│   │   ├── ru
│   │   │   ├── index.html
│   │   │   └── ru.mo
│   │   ├── run
│   │   │   ├── index.html
│   │   │   └── run.mo
│   │   ├── rw
│   │   │   ├── index.html
│   │   │   └── rw.mo
│   │   ├── sah
│   │   │   ├── index.html
│   │   │   └── sah.mo
│   │   ├── si
│   │   │   ├── index.html
│   │   │   └── si.mo
│   │   ├── sk
│   │   │   ├── index.html
│   │   │   └── sk.mo
│   │   ├── sl
│   │   │   ├── index.html
│   │   │   └── sl.mo
│   │   ├── smi
│   │   │   ├── index.html
│   │   │   └── smi.mo
│   │   ├── so
│   │   │   ├── index.html
│   │   │   └── so.mo
│   │   ├── sq
│   │   │   ├── index.html
│   │   │   └── sq.mo
│   │   ├── sr
│   │   │   ├── index.html
│   │   │   └── sr.mo
│   │   ├── sr-Latn
│   │   │   ├── index.html
│   │   │   └── sr-Latn.mo
│   │   ├── sv
│   │   │   ├── index.html
│   │   │   └── sv.mo
│   │   ├── swh
│   │   │   ├── index.html
│   │   │   └── swh.mo
│   │   ├── ta
│   │   │   ├── index.html
│   │   │   └── ta.mo
│   │   ├── te
│   │   │   ├── index.html
│   │   │   └── te.mo
│   │   ├── tg
│   │   │   ├── index.html
│   │   │   └── tg.mo
│   │   ├── th
│   │   │   ├── index.html
│   │   │   └── th.mo
│   │   ├── ti
│   │   │   ├── index.html
│   │   │   └── ti.mo
│   │   ├── tl
│   │   │   └── tl.mo
│   │   ├── tr
│   │   │   ├── index.html
│   │   │   └── tr.mo
│   │   ├── uk
│   │   │   ├── index.html
│   │   │   └── uk.mo
│   │   ├── ur
│   │   │   ├── index.html
│   │   │   └── ur.mo
│   │   ├── vi
│   │   │   ├── index.html
│   │   │   └── vi.mo
│   │   ├── xho
│   │   │   ├── index.html
│   │   │   └── xho.mo
│   │   ├── zh-Hans
│   │   │   ├── index.html
│   │   │   └── zh-Hans.mo
│   │   ├── zh-Hant-HK
│   │   │   ├── index.html
│   │   │   └── zh-Hant-HK.mo
│   │   ├── zh-Hant-TW
│   │   │   ├── index.html
│   │   │   └── zh-Hant-TW.mo
│   │   └── zu
│   │       ├── index.html
│   │       └── zu.mo
│   ├── modules
│   │   ├── admin
│   │   │   ├── HelloWorld
│   │   │   └── globalsettings
│   │   └── root
│   │       ├── HelloWorld
│   │       └── README.md
│   ├── plugins
│   │   ├── Demo
│   │   │   ├── Example
│   │   │   ├── ShowResponse
│   │   │   ├── UnActivatable
│   │   │   ├── demoAddEmFunction
│   │   │   └── noMailToExample
│   │   └── index.html
│   ├── psalm.xml
│   ├── themes
│   │   ├── admin
│   │   │   ├── Apple_Blossom
│   │   │   ├── Bay_of_Many
│   │   │   ├── Black_Pearl
│   │   │   ├── Dark_Sky
│   │   │   ├── Free_Magenta
│   │   │   ├── Noto_All_Languages
│   │   │   ├── Purple_Tentacle
│   │   │   ├── README_RTL.txt
│   │   │   ├── Sea_Green
│   │   │   ├── Sunset_Orange
│   │   │   ├── favicon.ico
│   │   │   └── index.html
│   │   ├── question
│   │   │   ├── README.md
│   │   │   ├── bootstrap_buttons
│   │   │   ├── bootstrap_buttons_multi
│   │   │   ├── bootstrap_dropdown
│   │   │   ├── browserdetect
│   │   │   ├── image_select
│   │   │   ├── inputondemand
│   │   │   └── ranking_advanced
│   │   └── survey
│   │       ├── bootswatch
│   │       ├── fruity
│   │       ├── index.html
│   │       └── vanilla
│   ├── third_party
│   │   ├── ace
│   │   │   ├── dev
│   │   │   └── min
│   │   ├── autoload.php
│   │   ├── composer
│   │   │   ├── ClassLoader.php
│   │   │   ├── InstalledVersions.php
│   │   │   ├── LICENSE
│   │   │   ├── autoload_classmap.php
│   │   │   ├── autoload_files.php
│   │   │   ├── autoload_namespaces.php
│   │   │   ├── autoload_psr4.php
│   │   │   ├── autoload_real.php
│   │   │   ├── autoload_static.php
│   │   │   ├── installed.php
│   │   │   └── platform_check.php
│   │   ├── datatables
│   │   │   ├── css
│   │   │   ├── images
│   │   │   └── js
│   │   ├── decimal
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENCE.md
│   │   │   ├── README.md
│   │   │   ├── decimal.js
│   │   │   └── decimal.min.js
│   │   ├── devbridge-autocomplete
│   │   │   ├── dist
│   │   │   ├── license.txt
│   │   │   ├── readme.md
│   │   │   └── typings
│   │   ├── dom-to-image
│   │   │   ├── Gruntfile.js
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── bower.json
│   │   │   ├── dist
│   │   │   ├── karma.conf.js
│   │   │   ├── spec
│   │   │   └── src
│   │   ├── emojifont
│   │   │   ├── LICENCE.txt
│   │   │   ├── css
│   │   │   └── fonts
│   │   ├── es6promise
│   │   │   └── es6-promise.auto.min.js
│   │   ├── jquery
│   │   │   ├── jquery-3.5.1.js
│   │   │   ├── jquery-3.5.1.min.js
│   │   │   ├── jquery-migrate-3.3.2.js
│   │   │   └── jquery-migrate-3.3.2.min.js
│   │   ├── jquery-ace
│   │   │   ├── README.md
│   │   │   └── jquery.ace.js
│   │   ├── jquery-actual
│   │   │   ├── LICENSE.txt
│   │   │   ├── README.md
│   │   │   ├── jquery.actual.js
│   │   │   └── jquery.actual.min.js
│   │   ├── jquery-bindWithDelay
│   │   │   ├── README
│   │   │   ├── bind.html
│   │   │   ├── bindWithDelay.js
│   │   │   ├── demo
│   │   │   ├── index.html
│   │   │   ├── onDelay.js
│   │   │   └── test
│   │   ├── jquery-blockui
│   │   │   └── jquery.blockUI.js
│   │   ├── jquery-json
│   │   │   ├── jquery.json-2.4.js
│   │   │   └── jquery.json-2.4.min.js
│   │   ├── jquery-keypad
│   │   │   ├── jquery.keypad-ca.js
│   │   │   ├── jquery.keypad-cs.js
│   │   │   ├── jquery.keypad-de.js
│   │   │   ├── jquery.keypad-es.js
│   │   │   ├── jquery.keypad-fr.js
│   │   │   ├── jquery.keypad-it.js
│   │   │   ├── jquery.keypad-nl.js
│   │   │   ├── jquery.keypad-no.js
│   │   │   ├── jquery.keypad-pl.js
│   │   │   ├── jquery.keypad-pt-BR.js
│   │   │   ├── jquery.keypad-sk.js
│   │   │   ├── jquery.keypad-tr.js
│   │   │   ├── jquery.keypad.alt.css
│   │   │   ├── jquery.keypad.css
│   │   │   ├── jquery.keypad.js
│   │   │   ├── jquery.keypad.min.js
│   │   │   ├── jquery.plugin.js
│   │   │   ├── jquery.plugin.min.js
│   │   │   ├── keypad.png
│   │   │   └── keypadBasic.html
│   │   ├── jquery-multiselect
│   │   │   ├── CHANGELOG
│   │   │   ├── GPL-LICENSE
│   │   │   ├── MIT-LICENSE
│   │   │   ├── README.markdown
│   │   │   ├── i18n
│   │   │   ├── jquery.multiselect.css
│   │   │   ├── jquery.multiselect.filter.css
│   │   │   ├── screenshot.gif
│   │   │   └── src
│   │   ├── jquery-nestedSortable
│   │   │   ├── README.md
│   │   │   └── jquery.mjs.nestedSortable.js
│   │   ├── jquery-notify
│   │   │   ├── README.markdown
│   │   │   ├── alert.png
│   │   │   ├── index.htm
│   │   │   ├── src
│   │   │   └── ui.notify.css
│   │   ├── jquery-selectboxes
│   │   │   ├── README
│   │   │   └── selectboxes
│   │   ├── jquery-tablesorter
│   │   │   ├── addons
│   │   │   ├── build
│   │   │   ├── build.xml
│   │   │   ├── changelog
│   │   │   ├── docs
│   │   │   ├── jquery.metadata.js
│   │   │   ├── jquery.tablesorter.js
│   │   │   ├── jquery.tablesorter.min.js
│   │   │   └── themes
│   │   ├── jquery-touch-punch
│   │   │   └── jquery.ui.touch-punch.min.js
│   │   ├── jquery-ui
│   │   │   ├── AUTHORS.txt
│   │   │   ├── LICENSE.txt
│   │   │   ├── images
│   │   │   ├── index.html
│   │   │   ├── jquery-ui.css
│   │   │   ├── jquery-ui.js
│   │   │   ├── jquery-ui.min.css
│   │   │   ├── jquery-ui.min.js
│   │   │   ├── jquery-ui.structure.css
│   │   │   ├── jquery-ui.structure.min.css
│   │   │   ├── jquery-ui.theme.css
│   │   │   └── jquery-ui.theme.min.css
│   │   ├── jquery.horizontal.scroll
│   │   │   └── jquery.horizontal.scroll.js
│   │   ├── js-cookie
│   │   │   ├── MIT-LICENSE.txt
│   │   │   ├── README.md
│   │   │   ├── js.cookie.js
│   │   │   └── js.cookie.min.js
│   │   ├── jsUri
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   └── Uri.js
│   │   ├── jspdf
│   │   │   ├── createpdf_worker.js
│   │   │   ├── jspdf.debug.js
│   │   │   └── jspdf.min.js
│   │   ├── jstoolbox
│   │   │   └── date.js
│   │   ├── jszip
│   │   │   ├── fileSaver.js
│   │   │   ├── jszip.js
│   │   │   └── jszip.min.js
│   │   ├── kcfinder
│   │   │   ├── README.md
│   │   │   ├── browse.php
│   │   │   ├── cache
│   │   │   ├── conf
│   │   │   ├── core
│   │   │   ├── css
│   │   │   ├── doc
│   │   │   ├── favicon.ico
│   │   │   ├── index.php
│   │   │   ├── integration
│   │   │   ├── js
│   │   │   ├── js_localize.php
│   │   │   ├── lang
│   │   │   ├── lib
│   │   │   ├── themes
│   │   │   ├── tpl
│   │   │   ├── upload
│   │   │   └── upload.php
│   │   ├── leaflet
│   │   │   ├── images
│   │   │   ├── leaflet-src.js
│   │   │   ├── leaflet.css
│   │   │   └── leaflet.js
│   │   ├── moment
│   │   │   ├── moment-with-locales.js
│   │   │   └── moment-with-locales.min.js
│   │   ├── paragonie
│   │   │   ├── constant_time_encoding
│   │   │   ├── random_compat
│   │   │   └── sodium_compat
│   │   ├── phpseclib
│   │   │   ├── bcmath_compat
│   │   │   └── phpseclib
│   │   ├── sortable
│   │   │   ├── jquery.binding.js
│   │   │   ├── jquery.fn.sortable.js
│   │   │   ├── jquery.fn.sortable.min.js
│   │   │   ├── sortable.js
│   │   │   └── sortable.min.js
│   │   ├── symfony
│   │   │   ├── polyfill-ctype
│   │   │   └── polyfill-mbstring
│   │   ├── tiamo
│   │   │   └── spss
│   │   ├── twig
│   │   │   └── twig
│   │   └── yiiext
│   │       └── twig-renderer
│   ├── tmp
│   │   ├── assets
│   │   │   └── index.html
│   │   ├── index.html
│   │   ├── runtime
│   │   │   └── index.html
│   │   └── upload
│   │       └── index.html
│   └── upload
│       ├── admintheme
│       │   └── index.html
│       ├── fonts
│       │   └── opensans
│       ├── global
│       │   └── index.html
│       ├── labels
│       │   ├── index.html
│       │   └── readme.txt
│       ├── plugins
│       │   └── index.html
│       ├── readme.txt
│       ├── surveys
│       ├── themes
│       │   ├── index.html
│       │   └── survey
│       └── twig
│           └── extensions
├── jb51.net.txt
├── limesurvey问卷调查系统.rar
├── 脚本之家.url
└── 服务器软件.url

508 directories, 900 files



实例下载地址

limesurvey问卷调查系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警