Skip to content

Commit

Permalink
Settings in script.js moved to the config file
Browse files Browse the repository at this point in the history
  • Loading branch information
prog-it committed Feb 11, 2017
1 parent 2983ecb commit 69f0d92
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 16 deletions.
2 changes: 0 additions & 2 deletions docs/Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,6 @@ mv /var/calls/*$ymd* /var/calls/$y/$m/$d/

===

Также в файле "img/script.js" прописаны настройки воспроизведения записей звонков.

Кратко:
1. Скачать ZIP архив с GitHub или выполнить git clone git@github.com:prog-it/Asterisk-CDR-Viewer-Mod.git
2. Распаковать / перенести файлы в нужную папку на сервере
Expand Down
14 changes: 1 addition & 13 deletions img/script.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,11 @@

// ID элемента с фоном плеера
var playerOverlayId = '#playerOverlay',
// ID элемента с плеером
playerId = '#playerBox',
// Автовоспроизведение
playerAutoplay = true,
// Показ даты записи
playerTitle = true,
// Символ, который будет добавлен в Title во время воспроизведения
playerSymbol = '♫♫♫';


// Показать запись
function showRecord(link, title) {
var $player = $(playerId),
$overlay = $(playerOverlayId),
autoplay = (playerAutoplay === true) ? 'play' : '',
docTitle = document.title,
title = (playerTitle === true) ? 'Дата: ' + title : '',
title = (playerTitle === true) ? title : '',
content =
'<div class="plTitle">'+title+'</div>' +
'<div class="plStyle" id="player"></div>'
Expand Down
6 changes: 6 additions & 0 deletions inc/config.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@
# Путь к основному разделу сайта
# Чтобы стрелка (рядом с текстом в шапке) не показывалась, закомментировать строчку ниже или задать значение ''
$site_gen_section = '../';
# Автовоспроизведение записи звонка
$site_js['player_autoplay'] = 1;
# Показ даты записи звонка над плеером
$site_js['player_title'] = 1;
# Символ, который будет добавлен в Meta - Title страницы во время воспроизведения записи звонка
$site_js['player_symbol'] = '&#9835;&#9835;&#9835;';

### Имена пользователей, которым разрешен доступ
# $admin_user_names = 'admin1,admin2,admin3';
Expand Down
2 changes: 1 addition & 1 deletion inc/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.0.1
2.3.1
12 changes: 12 additions & 0 deletions templates/header.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@
<script src="<?php echo isset($site_cdn['addr']) ? $site_cdn['js_jquery'] : 'img/jquery.min.js'; ?>"></script>
<script src="<?php echo isset($site_cdn['addr']) ? $site_cdn['js_player'] : 'img/player.js'; ?>"></script>
<script src="<?php echo isset($site_cdn['addr']) ? $site_cdn['js_player_skin'] : 'img/player_skin.js'; ?>"></script>
<script>
// ID элемента с фоном плеера
var playerOverlayId = '#playerOverlay',
// ID элемента с плеером
playerId = '#playerBox',
// Автовоспроизведение
playerAutoplay = <?php echo isset($site_js['player_autoplay']) && $site_js['player_autoplay'] == 1 ? 'true' : 'false'; ?>,
// Показ даты записи
playerTitle = <?php echo isset($site_js['player_title']) && $site_js['player_title'] == 1 ? 'true' : 'false'; ?>,
// Символ, который будет добавлен в Title во время воспроизведения
playerSymbol = '<?php echo isset($site_js['player_symbol']) ? $site_js['player_symbol'] : ''; ?>';
</script>
<script src="img/script.js?<?=filemtime('img/script.js');?>"></script>
</head>
<body>
Expand Down

0 comments on commit 69f0d92

Please sign in to comment.