This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true) die(); | |
# указываем ID формы с которой будем работать | |
$FORM_ID = 23; | |
global $APPLICATION; | |
# подключаем стили | |
//require_once("css_include.php"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if(isset($_REQUEST["WORD_ID"])) | |
{ | |
# подключим пролог | |
include($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/include/prolog_before.php"); | |
# 1 Пользователи с Админкой, 8 Отдел кадров, 9 Руководство | |
$arGroupAvalaible = array(1,8,9); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta http-equiv="content-type" content="application/vnd.ms-excel; charset=UTF-8"> | |
<?php require_once $_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/include/prolog_before.php"; | |
$APPLICATION->SetTitle("Отчет посещаемости"); | |
unset($_REQUEST["Детальный_отчет"]); | |
$VISIT = COption::GetOptionString("micros.visit", "groupid"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
# разрабочик Хакимов Александр | |
class MD_pdfscan | |
{ | |
# обявляем функцию сканирования PDF файлов в директории | |
public static function scanPDF($dir) | |
{ | |
# сканируем директорию которую мы передали как аргумент функции и вытаскиваем из неё массивом, все файлы | |
$files = scandir($dir); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
# Разработчик Хакимов Александр | |
# подключаем подключаем автолоад композера, чтобы в дальшейшем формировать из неё HTML заблон | |
require('/home/bitrix/www/pdf/autoload.php'); | |
# Ловим входящие реквесты и запихиваем их по переменным | |
$PIN = $_REQUEST["PIN"]; | |
$ID = $_REQUEST["ID"]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
/* created by ANNA | |
* edited by Hackimov | |
*/ | |
require_once($_SERVER['DOCUMENT_ROOT']."/bitrix/modules/main/include/prolog_before.php");?> | |
<?php | |
$type = $_REQUEST["type"]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE DEFINER = '' | |
PROCEDURE `license-prod-new`.iu_Licenses_WEB(INOUT _LicId INT,IN _lic_LicId INT | |
,IN _LicKindId INT,IN _LicSer VARCHAR(10),IN _LicNumb VARCHAR(100) | |
,IN _BlankNumb VARCHAR(100),IN _NumbInReestr VARCHAR(100),IN _BlankDate DATE | |
,IN _LicINN VARCHAR(9),IN _LicQrCode BIT,IN _LicPin SMALLINT(6),IN _LicensiatName_RU VARCHAR(1000),IN _LicensiatName_UZ VARCHAR(1000) | |
,IN _GuvNumb VARCHAR(100),IN _GuvNumbInReestr VARCHAR(100),IN _GuvRegDate DATE,IN _GuvOutDate DATE | |
,IN _LicOPF VARCHAR(1024),IN _OPFId INT,IN _LicPostIndex VARCHAR(10),IN _LicAddress VARCHAR(1000), IN _AddressOfActivity VARCHAR(1000) | |
,IN _LicPaspSer VARCHAR(10),IN _LicPaspNumb VARCHAR(100),IN _LicPaspOuter VARCHAR(1000) | |
,IN _LicPaspOutDate DATE,IN _LicPaspEndDate DATE,IN _LicKind TINYINT,IN _IsLicContr TINYINT | |
,IN _RegisterTypeId int,IN _LicensiarId int,IN _UserId int,IN _PersonId int, IN _OrgId int, IN _LicensiatId int |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Services; | |
class OperSmsSenderService | |
{ | |
/** | |
* Данный класс отвечает непосредственно за отправку и проверку доставки SMS сообщений | |
* Автор класса Хакимов Александр | |
* [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers\API; | |
use Illuminate\Http\Request; | |
use DB; | |
use App\Quotation; | |
use Carbon\Carbon; | |
class GetAllCVsAPIController extends BaseApiController | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers\API; | |
use Illuminate\Http\Request; | |
use DB; | |
use App\Quotation; | |
use ZipArchive; | |
use Illuminate\Support\Facades\Storage; |
OlderNewer