Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vmusicchart-cms
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Phạm Văn Đoan
vmusicchart-cms
Commits
0403ee6f
Commit
0403ee6f
authored
Apr 12, 2020
by
Phạm Văn Đoan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cập nhật form thêm ca sĩ
parent
9828719e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
21 deletions
+47
-21
CmsTrack.php
application/controllers/backend/CmsTrack.php
+42
-17
add_singer_view.php
application/views/backend/cms_track/add_singer_view.php
+0
-0
show_track_view.php
application/views/backend/cms_track/show_track_view.php
+5
-4
No files found.
application/controllers/backend/CmsTrack.php
View file @
0403ee6f
...
...
@@ -63,7 +63,7 @@ class CmsTrack extends CI_Controller
$this
->
_data
[
'track_artists'
]
=
$track_artists
;
}
$this
->
_data
[
'list_user'
]
=
$list_user
=
$this
->
track_model
->
getListUsers
();
// print_r($id_user.'Nhạc sĩ'.$id_artist);
// Kiểm tra trùng giá trị nếu thay đổi ở form
//Thiết lập validate
...
...
@@ -82,7 +82,7 @@ class CmsTrack extends CI_Controller
$this
->
form_validation
->
set_message
(
'required'
,
'<li>Bắt buộc nhập, chọn.</li>'
);
$this
->
form_validation
->
set_message
(
'is_unique'
,
'<li>Đã tồn tại.</li>'
);
// Xử lý form
đăng nhập
// Xử lý form
if
(
$this
->
form_validation
->
run
(
$this
)
==
false
)
{
// $this->_data['date_limit'] = $this->input->post('name');
$this
->
_data
[
'title'
]
=
$this
->
input
->
post
(
'title'
);
...
...
@@ -108,10 +108,8 @@ class CmsTrack extends CI_Controller
$id_artists
=
(
$update_artist
>
0
)
?
$update_artist
:
$artist
;
(
$singer
||
$id_user
)
?
$active_singer
=
'update'
:
$active_singer
=
'insert'
;
(
$artist
||
$id_artist
)
?
$active_artist
=
'update'
:
$active_artist
=
'insert'
;
// die($active_artist.$active_singer.'ca sĩ'.$id_singer.'/'.$singer.'nhạc sĩ'.$id_artists.'/'.$artist);
// Xử lý upload: avatar
if
(
$file
!=
''
){
// MyHelper::echoPreDie('1230');
$db_art_path
=
''
;
$upload_path
=
'uploads/tracks/arts'
;
$upload_full_path
=
'/home/aseanvn/public_html/vmusicchart.dcv.vn/'
.
$upload_path
;
...
...
@@ -144,7 +142,9 @@ class CmsTrack extends CI_Controller
}
}
//Thêm bài hát mới
/**
* Thêm bài hát mới
*/
public
function
addTrack
()
{
$this
->
_data
[
'list_user'
]
=
$list_user
=
$this
->
track_model
->
getListUsers
();
...
...
@@ -179,7 +179,7 @@ class CmsTrack extends CI_Controller
$this
->
form_validation
->
set_message
(
'required'
,
'<li class="list-unstyled">Bắt buộc nhập, chọn.</li>'
);
$this
->
form_validation
->
set_message
(
'is_unique'
,
'<li class="list-unstyled">Đã tồn tại.</li>'
);
// Xử lý form
đăng nhập
// Xử lý form
if
(
$this
->
form_validation
->
run
(
$this
)
==
false
)
{
$this
->
_data
[
'title'
]
=
$this
->
input
->
post
(
'title'
);
$this
->
_data
[
'singer'
]
=
$this
->
input
->
post
(
'singer'
);
...
...
@@ -196,8 +196,7 @@ class CmsTrack extends CI_Controller
$this
->
_data
[
'titlePage'
]
=
'Tạo mới Bài hát'
;
$this
->
_data
[
'loadPage'
]
=
'backend/cms_track/add_track_view'
;
$this
->
load
->
view
(
'backend/admin_template_view'
,
$this
->
_data
);
}
else
{
// $username = $this->input->post('username');
}
else
{
$title
=
$this
->
input
->
post
(
'title'
);
$singer
=
$this
->
input
->
post
(
'singer'
);
$artist
=
$this
->
input
->
post
(
'artist'
);
...
...
@@ -221,7 +220,7 @@ class CmsTrack extends CI_Controller
);
$insert_id
=
$this
->
track_model
->
add
(
$dataUpdate
);
if
(
$insert_id
)
{
// Xử lý upload: avatar
// Xử lý upload: avatar
$db_art_path
=
''
;
$upload_path
=
'uploads/tracks/arts'
;
$upload_full_path
=
'/home/aseanvn/public_html/vmusicchart.dcv.vn/'
.
$upload_path
;
...
...
@@ -253,6 +252,11 @@ class CmsTrack extends CI_Controller
}
}
/**
* Hàm xử lý thêm ca sĩ cho bài hát
*
* @param $track_id
*/
public
function
addSinger
(
$track_id
)
{
$this
->
_data
[
'track'
]
=
$contest
=
$this
->
track_model
->
getById
(
$track_id
);
...
...
@@ -266,7 +270,7 @@ class CmsTrack extends CI_Controller
$this
->
form_validation
->
set_message
(
'required'
,
'<li class="list-unstyled">Bắt buộc nhập, chọn.</li>'
);
$this
->
form_validation
->
set_message
(
'is_unique'
,
'<li class="list-unstyled">Đã tồn tại.</li>'
);
// Xử lý form
đăng nhập
// Xử lý form
if
(
$this
->
form_validation
->
run
(
$this
)
==
false
)
{
$this
->
_data
[
'singer'
]
=
$this
->
input
->
post
(
'singer'
);
...
...
@@ -286,7 +290,12 @@ class CmsTrack extends CI_Controller
}
}
/**
* Xem chi tiết bài hát
*
* @param $track_id
*/
public
function
showTrack
(
$track_id
)
{
$this
->
_data
[
'track'
]
=
$this
->
track_model
->
getById
(
$track_id
);
...
...
@@ -298,7 +307,12 @@ class CmsTrack extends CI_Controller
$this
->
load
->
view
(
'backend/admin_template_view'
,
$this
->
_data
);
}
// Tên bài hát tồn tại hay chưa
/**
* Tên bài hát tồn tại hay chưa
*
* @param $title
* @return bool
*/
public
function
check_title
(
$title
)
{
if
(
$this
->
input
->
post
(
'id'
))
{
...
...
@@ -312,21 +326,31 @@ class CmsTrack extends CI_Controller
$this
->
form_validation
->
set_message
(
'check_title'
,
'<li class="list-unstyled">Bài hát đã tồn tại.</li>'
);
return
false
;
}
else
{
return
TRUE
;
return
true
;
}
}
// kiểm tra đã chọn ca sĩ/nhạc sĩ
/**
* Kiểm tra đã chọn ca sĩ/nhạc sĩ
*
* @param $value
* @return bool
*/
public
function
check_default
(
$value
)
{
if
(
$value
==
'0'
)
{
$this
->
form_validation
->
set_message
(
'check_default'
,
'<li class="list-unstyled">Vui lòng chọn ca sĩ hoặc sáng tác.</li>'
);
return
false
;
}
else
return
TRUE
;
return
true
;
}
// kiểm tra id_nct khác null
/**
* Kiểm tra id_nct khác null
*
* @param $nct_id
* @return bool
*/
public
function
check_nct_id
(
$nct_id
)
{
$source
=
$this
->
input
->
post
(
'source'
);
...
...
@@ -334,7 +358,7 @@ class CmsTrack extends CI_Controller
$this
->
form_validation
->
set_message
(
'check_nct_id'
,
'<li class="list-unstyled">Vui lòng nhập ID bài hát trên NCT.</li>'
);
return
false
;
}
else
return
TRUE
;
return
true
;
}
}
\ No newline at end of file
application/views/backend/cms_track/add_singer_view.php
View file @
0403ee6f
This diff is collapsed.
Click to expand it.
application/views/backend/cms_track/show_track_view.php
View file @
0403ee6f
...
...
@@ -22,11 +22,12 @@
<?php
endif
;
?>
<?php
if
(
isset
(
$track
[
0
]))
:
?>
<div
class=
"row"
>
<div
class=
"col-lg-2"
>
<div
class=
"col-lg-
1
2"
>
<a
class=
"btn btn-sm btn-success"
href=
"
<?php
echo
base_url
(
'backend/cmsTrack/addSinger/'
.
$track
[
0
][
'id'
]);
?>
"
>
<i
class=
"glyphicon-plus"
>
Thêm ca sĩ
</i>
<i
class=
"glyphicon-plus"
></i>
Thêm Ca sĩ
</a>
<a
class=
"btn btn-sm btn-primary"
href=
"
<?php
echo
base_url
(
'backend/cmsTrack/addComposer/'
.
$track
[
0
][
'id'
]);
?>
"
>
<i
class=
"glyphicon-plus"
></i>
Thêm Nhạc sĩ / Sáng tác
</a>
</div>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment