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 | |
declare(strict_types=1); | |
namespace App\Services\Common\React; | |
use Evenement\EventEmitter; | |
use React\MySQL\ConnectionInterface; | |
use React\MySQL\Factory; | |
use React\MySQL\Io\LazyConnection; | |
use React\Stream\Util; |
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
bu döküman www.toplusms.tc tarafından hazırlanmıştır. | |
kendi geliştirdiğimiz sms paneline mobilişim entegrasyonu yapmamız gerekti. bize bir api verdiler. | |
xml, json, soap1.1 ve soap1.2 yöntemleriyle api kullanılabiliyor. biz xml kullanmayı tercih ettik. | |
dökümandaki yönergeleri aynen izledim fakat bir türlü sms gönderimini başaramadım. ekomesajın | |
sitesinden örnek php kodlarını indirip onları da denedik ama bir türlü başaramadık. mobilişim teknik | |
desteği aradım. saolsun yardımcı oldular. oradaki dökümanın eski olduğunu, ekomesaj sitesinden indirilen | |
php örnek kodun da eski olduğunu sms gönderimi için bize yardımcı olacağını söyledi. uzak masaüstü | |
bağlantısı yaparak nasıl sms göndereceğimizi gösterdi. şimdi biz de bu bilgileri siz değerli kullanıcılarımızla | |
paylaşmak amacıyla bu dökümanı hazırlıyoruz. umarım birgün mobilişim kendi dökümanlarını günceller |
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
import React, { Component, PropTypes } from 'react'; | |
import { propTypes, reduxForm, Field } from 'redux-form'; | |
import { connect } from 'react-redux'; | |
import { push as pushAction } from 'react-router-redux'; | |
import compose from 'recompose/compose'; | |
import { Container, Row, Col } from 'react-grid-system'; | |
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider'; | |
import getMuiTheme from 'material-ui/styles/getMuiTheme'; | |
import { Card, CardActions } from 'material-ui/Card'; |