first
This commit is contained in:
7
modules/dashboard/widgets/example/lang.DEFAULT.php
Normal file
7
modules/dashboard/widgets/example/lang.DEFAULT.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
//var.php
|
||||
$lang['widget']['1001'] = '위젯샘플';
|
||||
|
||||
//main.php
|
||||
$lang['widget']['2001'] = '관리자 대시보드용 위젯 샘플입니다.';
|
||||
?>
|
||||
7
modules/dashboard/widgets/example/lang.english.php
Normal file
7
modules/dashboard/widgets/example/lang.english.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
//var.php
|
||||
$lang['widget']['1001'] = 'Example'; //위젯샘플
|
||||
|
||||
//main.php
|
||||
$lang['widget']['2001'] = 'This is a sample for Dashboard Widget.'; //관리자 대시보드용 위젯 샘플입니다.
|
||||
?>
|
||||
BIN
modules/dashboard/widgets/example/main.css
Normal file
BIN
modules/dashboard/widgets/example/main.css
Normal file
Binary file not shown.
4
modules/dashboard/widgets/example/main.php
Normal file
4
modules/dashboard/widgets/example/main.php
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
<div class="panel-body rb-example-panel-body" style="height:500px;">
|
||||
<?php echo _LANG('2001','widget')?>
|
||||
</div>
|
||||
1
modules/dashboard/widgets/example/name.txt
Normal file
1
modules/dashboard/widgets/example/name.txt
Normal file
@@ -0,0 +1 @@
|
||||
Dashboard Widget for Example
|
||||
5
modules/dashboard/widgets/example/var.php
Normal file
5
modules/dashboard/widgets/example/var.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
$d['admdash']['title'] = _LANG('1001','widget'); //타이틀
|
||||
$d['admdash']['col'] = '6'; // 가로폭 100% = 12 , 50% = 6
|
||||
$d['admdash']['more'] = ''; // 더보기 링크
|
||||
?>
|
||||
Reference in New Issue
Block a user