1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <div class="{{$viewClass['form-group']}}">
- <label class="{{$viewClass['label']}} control-label">{!! $label !!}</label>
- <div class="{{$viewClass['field']}}">
- @include('admin::form.error')
- <textarea class="form-control {{$class}}" name="{{$name}}" placeholder="{{ $placeholder }}" {!! $attributes !!} >{{ $value }}</textarea>
- @include('admin::form.help-block')
- </div>
- </div>
- <script require="@tinymce" init="{!! $selector !!}">
- var opts = {!! admin_javascript_json($options) !!};
- opts.selector = '#'+id;
- if (! opts.init_instance_callback) {
- opts.init_instance_callback = function (editor) {
- editor.on('Change', function(e) {
- $this.val(String(e.target.getContent()).replace('<p><br data-mce-bogus="1"></p>', '').replace('<p><br></p>', ''));
- });
- }
- }
- opts.setup = function (editor) {
- editor.ui.registry.addIcon('myCustomIcon1', '<svg t="1748573632733" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="29351" width="24" height="24"><path d="M893.09536344 340.61983656V178.25968172c0-25.93252473-20.85876989-47.35504516-47.35504516-47.35504516H178.25968172c-25.93252473 0-47.35504516 20.85876989-47.35504516 47.35504516v162.36015484h762.19072688zM381.20987527 393.6123871H131.4683871v452.12793118c0 25.93252473 20.85876989 47.35504516 47.35504516 47.35504516h202.38644301V393.6123871z m52.4288 0V892.5316129h412.66539355c33.26128172 0 46.22754408-18.04001721 46.22754408-46.22754408V393.6123871H433.63867527z" fill="#2C2C2C" p-id="29352"></path></svg>');
- editor.ui.registry.addIcon('myCustomIconLeft', '<svg t="1748572285440" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="25026" width="24" height="24"><path d="M853.333333 128H170.666667c-25.6 0-42.666667 17.066667-42.666667 42.666667v682.666666c0 25.6 17.066667 42.666667 42.666667 42.666667h682.666666c25.6 0 42.666667-17.066667 42.666667-42.666667V170.666667c0-25.6-17.066667-42.666667-42.666667-42.666667zM213.333333 213.333333h256v256H213.333333V213.333333z m0 597.333334v-256h256v256H213.333333z m597.333334 0h-256V213.333333h256v597.333334z" fill="#09121F" p-id="25027"></path></svg>');
- editor.ui.registry.addIcon('myCustomIconRight', '<svg t="1748572229839" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="24877" width="24" height="24"><path d="M853.333333 128H170.666667c-25.6 0-42.666667 17.066667-42.666667 42.666667v682.666666c0 25.6 17.066667 42.666667 42.666667 42.666667h682.666666c25.6 0 42.666667-17.066667 42.666667-42.666667V170.666667c0-25.6-17.066667-42.666667-42.666667-42.666667zM213.333333 810.666667V213.333333h256v597.333334H213.333333z m597.333334 0h-256v-256h256v256z m0-341.333334h-256V213.333333h256v256z" fill="#09121F" p-id="24878"></path></svg>');
- editor.ui.registry.addButton('myLayoutLeft', {
- text: '',
- icon: 'myCustomIconLeft',
- tooltip: 'Insert Left Layout',
- onAction: function () {
- const html = tinymce.get(editor.id).getContent();
- const insterEle = '<div class="product-contect-box"><div class="flex"><div class="i-box"><h3>Intelligent cutting and pasting all-in-one machine</h3><p>Intelligent cutting and pasting all-in-one machineFull process automation: integrated cloud database to retrieve model data, laser cutting, vacuum adsorption film, UV curing and other links, eliminating the cumbersome operation of multi-equipment switching, to achieve “one-click” service.</p><\/div><div class="i-box"><img src="https://mietubl-website.oss-cn-hongkong.aliyuncs.com/static/common/images/500px.png" alt="ANC noise cancelling headphone"><\/div><\/div><\/div><br \/>';
- tinymce.activeEditor.setContent(html+insterEle);
- }
- });
- editor.ui.registry.addButton('myLayoutRight', {
- text: '',
- icon: 'myCustomIconRight',
- tooltip: 'Insert Right Layout',
- onAction: function () {
- const html = tinymce.get(editor.id).getContent();
- const insterEle = '<div class="product-contect-box"><div class="flex fright"><div class="i-box"><h3>European Union certified intelligent film cutting machine</h3><p>24000+ models updated in the cloud, on-demand cut phone/tablet/watch film, open consumables, personalized back film customization, one machine to solve the inventory problem.</p><\/div><div class="i-box"><img src="https://mietubl-website.oss-cn-hongkong.aliyuncs.com/static/common/images/500px.png" alt="ANC headphone"><\/div><\/div><\/div><br \/>';
- tinymce.activeEditor.setContent(html+insterEle);
- }
- });
- }
- opts.max_height = 730;
- opts.content_css = '{{ config('admin.oss_host') }}/static/common/css/common.css';
- tinymce.init(opts)
- </script>
|