- Автор темы
- #1
всем привет. подскажите пожалуйста как правильно написать код и выполнить функцию.
Есть вот такая функция
можно ли сделать так что бы данный кусок кода отрабатывал только при условии если в базе данных установлено значение:
?
Есть вот такая функция
Код:
function showPurchaseBox() {
if( window.artist_sell !== 'off' ) {
if (Amplitude.getActiveSongMetadata().showDemo == 'true') {
if (($('.amplitude-song-played-progress').val() * 100) > 90) {
$('#purchase-song').find('.price').text(Amplitude.getActiveSongMetadata().price);
$('#purchase-song').find('.btn-mat-purchase-song').attr('onclick', 'purchaseTrack("' + Amplitude.getActiveSongMetadata().id + '", $(this));')
$('#purchase-song').modal('show');
Amplitude.pause();
Amplitude.audio().currentTime = 0;
setTimeout(function () {
$("#light-wave").stop(true);
$('#light-wave').width('0px');
}, 200);
}
} else if (Amplitude.getActiveSongMetadata().purchase == 'true') {
if (($('.amplitude-song-played-progress').val() * 100) > 20) {
$('#purchase-song').find('.price').text(Amplitude.getActiveSongMetadata().price);
$('#purchase-song').find('.btn-mat-purchase-song').attr('onclick', 'purchaseTrack("' + Amplitude.getActiveSongMetadata().id + '", $(this));')
$('#purchase-song').modal('show');
Amplitude.pause();
Amplitude.audio().currentTime = 0;
setTimeout(function () {
$("#light-wave").stop(true);
$('#light-wave').width('0px');
}, 200);
}
}
}
PHP:
$radio->user->is_pro == 0