This commit is contained in:
shim
2023-04-17 11:06:08 +09:00
parent d0b393aa97
commit 76264e09ad
4686 changed files with 552713 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
if(!defined('__KIMS__')) exit;
$d['widget']['dom'] = array(
'gallery-default' => array(
'나의 프로필 카드', //위젯명
array(
array('title','input','타이틀','인기 포스트'),
array('subtitle','input','보조 타이틀',''),
array('sort','select','정렬기준','조회순=hit,좋아요순=likes,댓글순=comment','hit'),
array('term','select','출력기간','최근 1주=-1 week,최근 2주=-2 week,최근 3주=-3 week,최근 1달=-4 week'),
array('margin_top','select','상단여백','적용=true,미적용=false','true'),
array('show_header','select','헤더출력','출력=show,숨김=hide','show'),
array('vtype','select','보기타입','모달형=modal,페이지형=page','modal'),
array('author','select','등록자 표시','표시함=true,표시안함=false','false'),
array('duration','select','동영상 표시','재생시간 표시=show,재생버튼 표시=hide','hide'),
array('ranking','select','강조 랭킹표시','강조안함=false,전체강조=1000,1개=1,2개=2,3개=3,4개=4,5개=5,10개=10','3'),
array('limit','select','출력 항목수','2개=2,4개=4,6개=6,8개=8,10개=10,12개=12','4'),
),
),
);
?>

View File

@@ -0,0 +1,19 @@
<?php
?>
<section class="widget border-bottom<?php echo $wdgvar['margin_top']=='true'?'':' mt-0 border-top-0' ?>">
<?php if ($wdgvar['show_header']=='show'): ?>
<header>
<h3><?php echo $wdgvar['title'] ?></h3>
<small class="ml-2 text-muted f13"><?php echo $wdgvar['subtitle']?></small>
</header>
<?php endif; ?>
<main class="px-3 <?php echo $wdgvar['show_header']=='show'?' pt-1':' pt-3' ?>">
</main>
</section>

View File

@@ -0,0 +1 @@
나의 프로필 카드

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB