- 라이믹스 게시판 스크랩 기능TheStorybookQ스크랩 삭제 잘못된 요청 문의질문 :이미 스크랩된 게시글의 스크랩 버튼을 스크랩 삭제로 제공해주려고 하는데 잘못된 요청이 반환이 됩니다. javascript:doCallModuleAction('member','procMemberDeleteScrap',{$document_srl}) 위와 같이 스크랩 할때와 비슷하지만 act만 procMemberDeleteScrap 으로 했는데 이건 모듈에서 허용을 하지 않나요?스크랩은 허용을 하고 삭제를 안한건지 ..... 아니면 제가 잘못사용하거나 부족한 인수가 있는건지.. 모듈에는 이렇게 등록되어 있어 사용 가능해 보이긴 합니다. 답변 : #L722-L732" target="_blank" rel="noopener">https://github.com/rhymix/..
- 2025-02-03 04:33:26
- 라이믹스 debugPrintTheStorybook@if (function_exists('debugPrint'))debugPrint('이 함수는 동작합니다.'); {@ debugPrint($logged_info)}@elseecho 'debugPrint 함수가 정의되어 있지 않습니다.';}@endif@php debugPrint($comment);@endphp
- 2025-02-03 04:20:32
- 라이믹스 특정 게시판 글 가져오기TheStorybook{@$mid = 'trends(게시판이름)';$oModuleModel = getModel('module');$module_srl = $oModuleModel->getModuleSrlByMid($mid);$args = new stdClass();$args->module_srl = $module_srl;$args->list_count = 8;$list = executeQuery('document.getDocumentList',$args)->data;} $key, $val"> document_srl}" title="{$val->title}"> {$val->title} comment_count > 0">{$val->comment_count} {$val->nick_name}
- 2025-02-03 04:19:55
- 라이믹스 모든 글 최신글 가져오기 코드TheStorybook{@$args = new stdClass();$args->list_count = 8; // 가져올 게시글 수$args->sort_index = 'regdate'; // 정렬 기준: 등록일(regdate)$args->order_type = 'desc'; // 내림차순 정렬(최신 글 우선)$list = executeQuery('document.getDocumentList', $args)->data;} $key, $val"> document_srl}" title="{$val->title}"> {$val->title} comment_count > 0">{$val->comment_count} {$val->nick_name}
- 2025-02-03 04:18:44
- 글보기에서 바로 비밀글 변경하는 방법TheStorybookdocument 모듈에 이런 쿼리문이 있더군요.modules/document/queries/updateDocumentsSecret.xml 이런 쿼리문이 있길래, 이걸 게시판 글보기에서 바로 실행할 수 있는 방법 없나요? 글보기 스킨에서 이렇게 하면 비밀글로 업데이트 실행해보면... 잘못된 요청입니다.ERR_ACT_NOT_FOUNDclasses/module/ModuleHandler.class.php:491이렇게 나오네요. updateDocumentsSecret 검색해보니 쿼리문만 있고 실제 콘트롤러나 뷰 등에서 사용되는 건 없는거 같군요..컬럼명도 is_secret인걸 보니 예전 xe, 시절 활용되던 쿼리문 이었군요 view.blade.php @if($oDocument->i..
- 2025-02-03 04:18:04
- 새로고침 없는 좋아요 버튼TheStorybook기존에 사용하는 코드는 새로고침이 되버린다.https://thestorybook.tistory.com/202 modules/board/skins/user_board_dev 해당 게시판에서 구현한 적이 있는데 다시 코드 좀 살펴보러...=33 참고자료1) 새로고침 없는 댓글 애드온https://xetown.com/tips/11684462) 베스트 댓글 애드온https://xetown.com/download/235803) 나의 메뉴 위젯https://xetown.com/tips/7849224) 회원소개 위젯https://xetown.com/download/10220945) 댓글 추천/비추천 새로고침 없이 (코어 수정 방법)https://xetown.com/tips/1308336) 스케치북에서 새로고침 없는 ..
- 2025-02-03 04:15:14
- 글추천 버튼 (새로고침 됨)TheStorybooklist.blade.php 내가 한 추천이 있는 경우 좋아요 취소를, 추천한 이력이 없으면 추천하기 버튼이 뜬다.@if($document->getMyVote()) document_srl}'); return false;"> {$document->get('voted_count') ? $document->get('voted_count') : ''}@else document_srl}'); return false;"> {$document->get('voted_count') ? $document->get('voted_count') : ''}@endif script.js function do_doc_VoteSubmit(module, action, target_srl) { saveScrollPosi..
- 2025-02-03 04:11:26
- 스크랩(threads) v1TheStorybookeb_threads.scrap.v1 list.blade.php@if($is_logged) @php $oDB = DB::getInstance(); // 스크랩 카운트를 가져오는 쿼리 실행 => $scrap_count $query = 'SELECT count(*) AS count FROM member_scrap WHERE document_srl = ?'; $stmt = $oDB->query($query, $document->document_srl); $result = $stmt->fetchAll(); $scrapped_count = $result[0]->count; // 스크랩 회원 리스트를 가져오는 쿼리 실행 => $scrap..
- 2025-02-03 04:07:55
- 스크랩 ec_iminTheStorybookmodules/contents/skins/ec_imin/form/file/view.htmlview.html{@ $args = new stdClass(); $args->document_srl = $oDocument->document_srl; $args->member_srl = $logged_info->member_srl; $scrapdocs = executeQuery('member.getScrapDocument', $args); $scrapdocs_count = 0; $scrapdocs_count = $scrapdocs->data->count;}{@ $scrapdocs_count = 0;}
- 2025-02-03 04:05:41
- 해시태그 자바스크립트TheStorybookv.1 : 게시판이 붙을 경우 검색 안됨document.querySelectorAll(".content").forEach(content => { content.innerHTML = content.innerHTML.replace(/#([\w가-힣_]+)/g, function (match, tag) { return `${match}`; });});#hashtagv.2 : 글 본문에서 검색 안됨document.querySelectorAll(".content").forEach(content => { // 현재 페이지 URL에서 마지막 경로(게시판 ID) 가져오기 const pathParts = window.location.pathname.split("/").filter(Bool..
- 2025-02-03 04:04:30
스킨 업데이트 안내
현재 이용하고 계신 스킨의 버전보다 더 높은 최신 버전이 감지 되었습니다. 최신버전 스킨 파일을 다운로드 받을 수 있는 페이지로 이동하시겠습니까?
("아니오" 를 선택할 시 30일 동안 최신 버전이 감지되어도 모달 창이 표시되지 않습니다.)