All public logs
Combined display of all available logs of LimeSurvey Manual. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 09:07, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/117/ko (Created page with "보기 파일에 다음을 추가합니다:")
- 09:07, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/116/ko (Created page with "다른 핵심 양식에 대한 지원을 추가하려면 pull-요청에 다음 변경 사항을 적용해야 합니다.")
- 09:06, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/115/ko (Created page with "* globalsettings.general{{NewIn|v=6.0.0}}")
- 09:06, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/114/ko (Created page with "다음 양식을 확장할 수 있습니다.")
- 09:06, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/113/ko (Created page with "=== 지원되는 양식 ===")
- 09:06, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/112/ko (Created page with "입력 유효성 검사는 <code>save</code> 기능에서 수행됩니다(위 예 참조). 게시된 값이 유효하지 않은 경우 <code>SaveFailedException</code> 발생하고 경고 플래시 메시지가 사용자에게 표시됩니다.")
- 09:05, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/111/ko (Created page with "=== 유효성 검사 ===")
- 09:05, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/91/ko (Created page with "* ExtensionInstaller * FileFetcher")
- 08:59, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/89/ko (Created page with "== 확장 설치 프로그램 ==")
- 08:59, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/90/ko (Created page with "확장 설치 프로그램 라이브러리는 두 개의 추상 클래스로 구성됩니다:")
- 08:58, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/92/ko (Created page with "ExtensionInstaller는 PluginInstaller, QuestionThemeInstaller 등과 같은 각 확장 유형에 대해 하위 클래스로 분류됩니다.")
- 08:58, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/93/ko (Created page with "FileFetcher는 파일을 가져오는 다양한 방법에 따라 하위 클래스로 분류됩니다. 현재는 업로드된 zip 파일만 지원되지만 앞으로는 Github 또는 LimeStore 가져오기 도구도 있을 수 있습니다.")
- 08:58, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/94/ko (Created page with "File: extensioninstalleruml.png")
- 08:57, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/50/ko (Created page with "== 특수 플러그인 ==")
- 08:57, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/51/ko (Created page with "* 인증 플러그인 개발 * 내보내기 플러그인 개발")
- 08:57, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/52/ko (Created page with "== 사용 가능한 플러그인 == * 인증 플러그인 * 감사 로그 * AzureOAuthSMTP 플러그인 * CintLink * [ [사용 가능한 타사 플러그인]]")
- 08:56, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/53/ko (Created page with "== 튜토리얼 == [https://medium.com/@evently/creating-limesurvey-plugins-adcdf8d7e334 이] 단계별 튜토리얼은 모든 설문조사 응답 제출에 대해 게시물 요청을 보내는 플러그인을 만드는 방법을 보여줍니다. 튜토리얼에서는 전역 및 설문조사별 설정을 생성하고 저장하는 방법, 이벤트를 등록하는 방법 등을 보여줍니다.")
- 08:55, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/54/ko (Created page with "범주:개발 범주:플러그인")
- 08:55, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/110/ko (Created page with "// Inside init() Yii::app()->formExtensionService->add( 'globalsettings.general', new TextInput([ 'name' => 'myinput', 'label' => 'Label', 'disabled' => true, 'tooltip' => 'Moo moo moo', 'help' => 'Some help text', 'save' => function($request, $connection) { $value = $request->getPost('myinput'); if ($value === 'some invalid value') { throw new SaveFailedException("Could not s...")
- 08:55, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/109/ko (Created page with "<syntaxhighlight lang="php"> // 파일 맨 위에 use LimeSurvey\Libraries\FormExtension\Inputs\TextInput; use LimeSurvey\Libraries\FormExtension\SaveFailedException;")
- 08:55, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/108/ko (Created page with "TODO: 전역 대신 플러그인 설정에 저장")
- 08:54, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/107/ko (Created page with "플러그인에서 양식에 새 입력을 추가하려면 <code>init()</code> 함수에서 다음 코드를 사용하십시오:")
- 08:54, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/106/ko (Created page with "=== 예시 ===")
- 08:54, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/105/ko (Created page with "이 시스템에서 할 수 없는 한 가지는 '새 양식 탭'을 추가하는 것입니다.")
- 08:54, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/104/ko (Created page with "HTML이 없는 클래스 기반 시스템의 핵심은 핵심 HTML이 변경될 때 플러그인 작성자가 HTML을 업데이트할 수 있도록 하는 것입니다. 그래도 작성자는 필요한 경우 <code>RawHtmlInput</code> 유형을 사용할 수 있습니다.")
- 08:54, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/103/ko (Created page with "각 형태는 '''위치 문자열'''로 식별됩니다.<form name><dot><tab name> . 예: <code>globalsettings.general</code> 또는 <code>globalsettings.security</code> .")
- 08:54, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/102/ko (Created page with "* '''FormExtensionService'''라는 전역 모듈 * 플러그인이 위의 모듈 초기화에 추가할 수 있는 '''입력 클래스''' 라이브러리 * '''위젯'''과 함께 LimeSurvey 보기 파일에 사용되는 사용자 정의 렌더러")
- 08:49, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/101/ko (Created page with "이는 다음 구성 요소로 구성됩니다:")
- 08:49, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/100/ko (Created page with "양식 확장 시스템은 각 양식에 대해 새 이벤트를 추가하지 않고 핵심 LimeSurvey에서 양식을 확장하는 보다 일반적인 방법입니다.")
- 08:49, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/99/ko (Created page with "=== 소개 ===")
- 08:49, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/98/ko (Created page with "== 양식 확장{{NewIn|v=6}} ==")
- 08:49, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/29/ko (Created page with "요청 시 API 객체에 새로운 기능을 추가할 수 있습니다.")
- 08:49, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/28/ko (Created page with "API 개체는 PluginBase에서 확장할 때 <code>$this->api</code> 통해 사용할 수 있습니다. 그렇지 않으면 플러그인 생성자에 전달되는 PluginManager 인스턴스에서 가져올 수 있습니다.")
- 08:48, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/27/ko (Created page with "가능한 한 [http://api.limesurvey.org/classes/LimeSurvey.PluginManager.LimesurveyApi.html 여기]에 설명된 방법을 통해서만 LimeSurvey와 상호 작용하십시오. 이벤트와 동일합니다.")
- 08:48, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/26/ko (Created page with "플러그인은 "공개" API를 통해서만 LimeSurvey를 확장해야 합니다. 즉, 소스 코드에 있는 클래스를 직접 사용하는 것은 나쁜 습관입니다. 강제로 그렇게 하지 않도록 할 수는 없지만, 사소한 업데이트를 할 때마다 플러그인이 손상될 위험이 있습니다.")
- 08:48, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/25/ko (Created page with "== API ==")
- 08:48, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/24/ko (Created page with "플러그인은 이벤트를 구독하고 이벤트가 실행될 때 LimeSurvey와 상호 작용할 수 있습니다. 현재 사용 가능한 이벤트 목록을 보려면 플러그인 이벤트를 확인하세요.")
- 08:48, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/23/ko (Created page with "== 이벤트 ==")
- 08:47, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/131/ko (Created page with "private function getIsActive(int $sid): bool { return (bool) $this->get('isActive', 'Survey', $sid, false); } </syntaxhighlight>")
- 08:47, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/130/ko (Created page with "public function newSurveySettings() { $event = $this->event; foreach ($event->get('settings') as $name => $value) { $this->set($name, $value, 'Survey', $event->get('survey'), false); } }")
- 08:47, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/129/ko (Created page with "$event->set( "surveysettings.{$this->id}", [ 'name' => get_class($this), 'settings' => [ 'isActive' => [ 'type' => 'boolean', 'label' => 'isActive', 'current' => $this->getIsActive($surveyId), 'help' => 'Activate plugin for this survey' ], ] ] );...")
- 08:47, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/128/ko (Created page with "public function beforeSurveySettings() { $event = $this->event; $surveyId = intval($event->get('survey'));")
- 08:46, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/127/ko (Created page with "<syntaxhighlight lang="php"> public function init() { $this->subscribe('beforeSurveySettings'); $this->subscribe('newSurveySettings'); // 기타 이벤트... }")
- 08:46, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/126/ko (Created page with "특정 설문조사를 위해 플러그인을 비활성화하는 예:")
- 08:45, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/125/ko (Created page with "* newSurveySettings * beforeSurveySettings")
- 08:45, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/124/ko (Created page with "설문조사별 플러그인 설정을 생성하는 데는 두 가지 이벤트가 사용됩니다.")
- 08:45, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/123/ko (Created page with "=== 설문조사별 플러그인 설정 ===")
- 08:44, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/22/ko (Created page with "<syntaxhighlight lang="php"> $mySetting = $this->get('mySetting', null, null, 10); // 기본값은 10입니다 </syntaxhighlight>")
- 08:44, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/21/ko (Created page with "설정이 null인 경우 기본값을 얻을 수 있습니다.")
- 08:44, 11 July 2024 Modernity4r talk contribs created page Translations:Plugins - advanced/20/ko (Created page with "<syntaxhighlight lang="php"> $mySetting = $this->get('mySetting'); $this->set('mySetting', $mySetting + 1); </syntaxhighlight>")