Спасибо! Попробую
|
[QUOTE]Dmitry Ban пишет:
Хм. Тогда покажите, пожалуйста, содержимое файла /bitrix/php_intarface/include/remotetypograf.php Желательно с помощью кнопки "Оформление текста в виде кода" над полем ввода текста. [/QUOTE] [CODE]<? /* remotetypograf.php PHP-implementation of ArtLebedevStudio.RemoteTypograf class (web-service client) Copyright © Art. Lebedev Studio | http://www.artlebedev.ru/ Typograf homepage: http://typograf.artlebedev.ru/ Web-service address: http://typograf.artlebedev.ru/webservices/typograf.asmx WSDL-description: http://typograf.artlebedev.ru/webservices/typograf.asmx?WSDL Default charset: UTF-8 Version: 1.0 (August 30, 2005) Author: Andrew Shitov (ash@design.ru) Example: include "remotetypograf.php"; $remoteTypograf = new RemoteTypograf(); // $remoteTypograf = new RemoteTypograf ('Windows-1251'); print $remoteTypograf->processText ('"Вы все еще кое-как верстаете в "Ворде"? - Тогда мы идем к вам!"'); */ class RemoteTypograf { var $_entityType = 4; var $_useBr = 1; var $_useP = 1; var $_maxNobr = 3; var $_encoding = 'UTF-8'; var $_quotA = 'laquo raquo'; var $_quotB = 'bdquo ldquo'; function RemoteTypograf ($encoding) { if ($encoding) $this->_encoding = $encoding; } function htmlEntities() { $this->_entityType = 1; } function xmlEntities() { $this->_entityType = 2; } function mixedEntities() { $this->_entityType = 4; } function noEntities() { $this->_entityType = 3; } function br ($value) { $this->_useBr = $value ? 1 : 0; } function p ($value) { $this->_useP = $value ? 1 : 0; } function nobr ($value) { $this->_maxNobr = $value ? $value : 0; } function quotA ($value) { $this->_quotA = $value; } function quotB ($value) { $this->_quotB = $value; } function processText ($text) { $text = str_replace ('&', '&', $text); $text = str_replace ('<', '<', $text); $text = str_replace ('>', '>', $text); $SOAPBody = '<?xml version="1.0" encoding="' . $this->_encoding . '"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ProcessText xmlns="http://typograf.artlebedev.ru/webservices/"> <text>' . $text . '</text> <entityType>' . $this->_entityType . '</entityType> <useBr>' . $this->_useBr . '</useBr> <useP>' . $this->_useP . '</useP> <maxNobr>' . $this->_maxNobr . '</maxNobr> <quotA>' . $this->_quotA . '</quotA> <quotB>' . $this->_quotB . '</quotB> </ProcessText> </soap:Body> </soap:Envelope>'; $host = 'typograf.artlebedev.ru'; $SOAPRequest = 'POST /webservices/typograf.asmx HTTP/1.1 Host: typograf.artlebedev.ru Content-Type: text/xml Content-Length: ' . strlen ($SOAPBody). ' SOAPAction: "http://typograf.artlebedev.ru/webservices/ProcessText" '. $SOAPBody; $remoteTypograf = fsockopen ($host, 80); fwrite ($remoteTypograf, $SOAPRequest); $typografResponse = ''; while (!feof ($remoteTypograf)) { $typografResponse .= fread ($remoteTypograf, 8192); } fclose ($remoteTypograf); $startsAt = strpos ($typografResponse, '<ProcessTextResult>') + 19; $endsAt = strpos ($typografResponse, '</ProcessTextResult>'); $typografResponse = substr ($typografResponse, $startsAt, $endsAt - $startsAt - 1); $typografResponse = str_replace ('&', '&', $typografResponse); $typografResponse = str_replace ('<', '<', $typografResponse); $typografResponse = str_replace ('>', '>', $typografResponse); return $typografResponse; } } ?> [/CODE] |
|
|
|
|
|
[QUOTE]Dmitry Ban пишет:
/bitrix/admin/module_admin.php?lang=ru [/QUOTE]Модуль нашел спасибо, но "Типогрофа" там нет... |
|
|
|
|