const Pool = require('pg').Pool
const pool = new Pool({
user: 'postgres',
password: 'postgres',
host: 'localhost',
port: 5432,
database: 'postgres' // тут
});
module.exports = pool;
$dir = 'userarea';
$home_path = '/';
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
if($file !='.' && $file !='..'){
if(is_dir($dir.'/'.$file)){
?>
<div class="item item-folder">
<a href="#">
<i class="fa fa-folder"></i>
<span data-folder="<?= $dir.'/'.$file ?>"><?= $file ?></span>
</a>
</div>
<?php
}else{
?>
<div class="item item-file">
<a target="_blank" href="<?= $home_path . $dir . '/' . $file ?>" target="_blank">
<i class="fa fa-file-pdf-o"></i> <?= $file ?>
</a>
</div>
<?php
}
}
}
closedir($dh);
}
}
$('#folder_list').on('click', 'span', function (e) {
e.preventDefault();
var $this = $(e.target);
$.ajax({
url: roboApp.ajax,
type: 'POST',
data: { action: 'getfolder', foldername: $this.attr('data-folder') }, // можно
success: function (data) {
$('#folder_list').html(data);
}
});
});
if (wp_doing_ajax()) {
add_action('wp_ajax_getfolder', 'get_folder');
add_action('wp_ajax_nopriv_getfolder', 'get_folder');
}
function get_folder() {
if (isset($_POST)) {
$path = $_POST['foldername'] ? sanitize_text_field($_POST['foldername']) : false;
$dir = get_home_path() . $path;
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
if($file !='.' && $file !='..'){
if(is_dir($dir.'/'.$file)){
?>
<div class="item item-folder">
<a href="#">
<i class="fa fa-folder"></i>
<span data-folder="<?= $path.'/'.$file ?>"><?= $file ?></span>
</a>
</div>
<?php
}else{
?>
<div class="item item-file">
<a target="_blank" href="<?= '/' . $path . '/' . $file ?>" target="_blank">
<i class="fa fa-file-pdf-o"></i> <?= $file ?> <span class="pull-right">1.2MB</span>
</a>
</div>
<?php
}
}
}
closedir($dh);
}
}
wp_die();
} else {
echo json_encode(['error' => true, 'message' => '1']);
// exit;
wp_die();
}
}
$(function() {
var $fotoramaDiv = $('.fotorama').fotorama();
var fotorama = $fotoramaDiv.data('fotorama');
var imagArr = fotorama.data;
var srcArr = [];
for(var i = 0; i < imagArr.length; i++){
var src = {};
src.src = imagArr[i].img;
srcArr.push(src);
}
$('.fotorama__img').click(function(){
$.fancybox.open(srcArr, {
loop: false
});
});
});
if (isset($_GET['lot_id'])) {
$lot_id = $_GET['lot_id'];
if (!isset($_COOKIE['viewed_lots'])) {
setcookie('viewed_lots', $lot_id, time() + 100500, '/');
}else{
$cook_arr = explode(',' , $_COOKIE['viewed_lots']);
if(!in_array($lot_id, $cook_arr)){
// echo "нет значения";
$cook_arr[] = $lot_id;
$string = implode(',' , $cook_arr);
setcookie('viewed_lots', $string, time() + 100500, '/');
}
}
// setcookie("viewed_lots", "", time() - 3600);
// echo Debug::d($cook_arr,'files',2);
echo Debug::d($_COOKIE,'files',2);
}
var daysObj = {
Mon: 'Понедельник',
Tue: 'Вторник',
Wed: 'Среда',
Thu: 'Четверг',
Fri: 'Пятница',
Sat: 'Суббота',
Sun: 'Воскресенье'
}
var monthObj = {
Jan: 'Января',
Feb: 'Февраля',
Mar: 'Марта',
Apr: 'Апреля',
May: 'Мая',
Jun: 'Июня',
Jul: 'Июля',
Aug: 'Августа',
Sep: 'Сентября',
Oct: 'Октября',
Nov: 'Ноября',
Dec: 'Декабря'
}
var curent = Date.now()
var days = 61; // нужное количество дней
var future = new Date(curent + days * 24 * 60 * 60 * 1000);
$('.test').html(future);
var str = $('.test').html();
var arr = str.split(' ');
arr.splice(4, 6);
console.log(arr);
var dayArr = arr[0],
monthArr = arr[1],
numArr = arr[2],
yearArr = arr[3];
if( numArr.charAt( 0 ) === '0' )
numArr = numArr.slice( 1 );
var stringInner = `<li>${daysObj[dayArr]}</li>
<li>${numArr} ${monthObj[monthArr]}, ${yearArr}</li>
`
console.log(stringInner);
$('.result').html(stringInner);