Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

TinyMCE editor for admin


puddlec

Recommended Posts

The TinyMCE has issues with the required argument of html5. Found some threads on stack and git... 

This fix works for me with Phoenix CE 1.0.7.12:

Add this lines into the init call into the hook:

    setup: function (editor) {
        editor.on('change', function (e) {
            editor.save();
        });
    }

so that it looks like this:

<?php
/*
  Copyright (c) 2019, C Poole
  All rights reserved.

  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

/*
HOW TO USE
you can either load the js file needed for TinyMCE locally or via the TinyMCE CDN (if you have a api key
if using TinyMCE CDN
use the url proivded to you by TinyMCE

if loading tinymce locally
<script src="path/to/where/you/saved/it"></script>
I recommend using the TinyMCE CDN, as it will keep it up to date.

HOW TO ADD TO OTHER TEXTAREAS
You will need to add the name of the textera to the selector line 
e.g. if the textarea name is example_name[1] you need to put
, textarea[name^="example_name"]
it will then load it on all textareas with example_name so if you have a multi language store, it will load for all languages
if the textarea is not on the categories or manufacors page then you will neeed to add the filename to  the $good_pages variable

HOW TO ADD/RE,OVE PLUGINS AND WHAT APPEARS IN THE TOOLBARS
this is done by simply adding/removing stuff from the plugins or toolbar settings
it is just what i use personally

*/
class hook_admin_siteWide_tinymce {
  var $version = '1.0.3';
  
  var $sitestart = null;
  var $siteend = null;
  var $good_pages = ['categories.php', 'manufacturers.php', 'info_pages.php']; // what pages do you want to load the tinymce editor on
  
  function listen_injectSiteEnd() {
    $this->siteend .= '<!-- tiny mce -->' . PHP_EOL;
    $this->siteend .= '<script src="https://cdnjs.cloudflare.com/ajax/libs/tinymce/5.0.15/tinymce.min.js"></script>' . PHP_EOL;
 $tinyScript = <<<eod
<script>
tinymce.init({
  selector: 'textarea[name^="products_description"], textarea[name^="categories_description"], textarea[name^="manufacturers_description"], textarea[name^="page_text"]', // Select all textarea we want to use it on
  height: 500,
  width: "100%",
  forced_root_block : false,
  theme: 'silver',
  plugins: [
    'advlist autolink lists link image charmap print preview hr anchor pagebreak',
    'searchreplace wordcount visualblocks visualchars code fullscreen',
    'insertdatetime media nonbreaking save table contextmenu directionality',
    'emoticons template paste textcolor colorpicker textpattern imagetools codesample toc'
  ],
  toolbar1: 'undo redo | insert | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image',
  toolbar2: 'print preview media | forecolor backcolor  | codesample fontselect fontsizeselect',
  image_advtab: true,
relative_urls : true,
remove_script_host : true,
  content_css: [
	'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.1/css/all.min.css',
	'https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css'
  ],
  setup: function (editor) {
    editor.on('change', function (e) {
       editor.save();
    });
  }
});
</script>
eod;

if (in_array(basename($_SERVER['PHP_SELF']), $this->good_pages)) {	
 $this->siteend .= $tinyScript . PHP_EOL;
    return $this->siteend;
  }
 } 
}

I have already added the Info-Pages textareas. Maybe Craig @puddlec can upload it as update into the marketplace. 

Link to comment
Share on other sites

Addition to the above see picture removed from tinymce's config and also updated to match bootstrap and fontawosome and tinymce from cdnjs

<?php
/*
  Copyright (c) 2019, C Poole
  All rights reserved.

  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

/*
HOW TO USE
you can either load the js file needed for TinyMCE locally or via the TinyMCE CDN (if you have a api key
if using TinyMCE CDN
use the url proivded to you by TinyMCE

if loading tinymce locally
<script src="path/to/where/you/saved/it"></script>
I recommend using the TinyMCE CDN, as it will keep it up to date.

HOW TO ADD TO OTHER TEXTAREAS
You will need to add the name of the textera to the selector line 
e.g. if the textarea name is example_name[1] you need to put
, textarea[name^="example_name"]
it will then load it on all textareas with example_name so if you have a multi language store, it will load for all languages
if the textarea is not on the categories or manufacors page then you will neeed to add the filename to  the $good_pages variable

HOW TO ADD/RE,OVE PLUGINS AND WHAT APPEARS IN THE TOOLBARS
this is done by simply adding/removing stuff from the plugins or toolbar settings
it is just what i use personally

*/
class hook_admin_siteWide_tinymce {
  var $version = '1.0.3';
  
  var $sitestart = null;
  var $siteend = null;
  var $good_pages = ['categories.php', 'manufacturers.php', 'info_pages.php']; // what pages do you want to load the tinymce editor on
  
  function listen_injectSiteEnd() {
    $this->siteend .= '<!-- tiny mce -->' . PHP_EOL;
    $this->siteend .= '<script src="https://cdnjs.cloudflare.com/ajax/libs/tinymce/5.6.2/tinymce.min.js"></script>' . PHP_EOL;
 $tinyScript = <<<eod
<script>
tinymce.init({
  selector: 'textarea[name^="products_description"], textarea[name^="categories_description"], textarea[name^="manufacturers_description"], textarea[name^="page_text"]', // Select all textarea we want to use it on
  height: 500,
  width: "100%",
  forced_root_block : false,
  theme: 'silver',
  plugins: [
    'advlist autolink lists link image charmap print preview hr anchor pagebreak',
    'searchreplace wordcount visualblocks visualchars code fullscreen',
    'insertdatetime media nonbreaking save table directionality',
    'emoticons template paste textpattern imagetools codesample toc'
  ],
  toolbar1: 'undo redo | insert | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image',
  toolbar2: 'print preview media | forecolor backcolor  | codesample fontselect fontsizeselect',
  image_advtab: true,
relative_urls : true,
remove_script_host : true,
  content_css: [
	'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css',
	'https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.3/css/bootstrap.min.css'
  ],
  setup: function (editor) {
    editor.on('change', function (e) {
       editor.save();
    });
  }
});
</script>
eod;

if (in_array(basename($_SERVER['PHP_SELF']), $this->good_pages)) {	
 $this->siteend .= $tinyScript . PHP_EOL;
    return $this->siteend;
  }
 } 
}

 

warnings.png

Link to comment
Share on other sites

There seems to be some confusion about the versions of this addon. I've downloaded 1.0.5 from this thread. I think it contains all the features mentioned in two previous posts.

One of my hooks create dynamic content to categories.php. Tinymce was not activated before this change:

<script>
$(document).ready(function() { //added
tinymce.init({
...
});
}); //added
</script>

Also adding autoresize into plugins is quite handy for me. Our product descriptions are not that long.

Link to comment
Share on other sites

  • 1 month later...

finally got round to uploading it, for those who used the file I posted earlier in this thread it is exactly the same.


* Support for newer versions of Phoenix
* Support for info pages
* removed some unneeded stuff

 

tested on v1.0.7.14

Phoenix support now at https://phoenixcart.org/forum/
App created for phoenix
TinyMCE editor for admin

 

Link to comment
Share on other sites

  • 2 months later...

Please note due to Phoenix cart moving to a new forum, this add on will no longer be supported on this forum

the new support thread is now here

https://phoenixcart.org/forum/viewtopic.php?f=11&t=379

any questions / help should only be made on the new forum and not here

Note, any future updates to this add on will not be made available here.

 

Phoenix support now at https://phoenixcart.org/forum/
App created for phoenix
TinyMCE editor for admin

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...