Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2014-01-14 13:49:51

sacripant
Plugin Author
From: Rhône — France
Registered: 2008-06-01
Posts: 479
Website

tiny_mce or textile_bar for image tab > caption textarea ?

Hello txp community,

I search a solution to add a help bar buttons for caption textarea (in image tab) for help client with caption typographic enhancement.
A idea ?

Thanks

Offline

#2 2014-01-16 17:11:34

sacripant
Plugin Author
From: Rhône — France
Registered: 2008-06-01
Posts: 479
Website

Re: tiny_mce or textile_bar for image tab > caption textarea ?

No response, I concluded there are no solutions now.

Offline

#3 2014-01-16 18:08:23

etc
Developer
Registered: 2010-11-11
Posts: 5,393
Website GitHub

Re: tiny_mce or textile_bar for image tab > caption textarea ?

Why not (you’ll have to configure TinyMCE)? This is an admin-type plugin:

register_callback('abc_tinymce_init', 'image_ui', 'extend_detail_form');

function abc_tinymce_init() {
	register_callback('abc_tinymce_script', 'admin_side', 'footer');
}

function abc_tinymce_script($event, $step, $pre, $rs='') {
	return $rs.n.'<script src="//tinymce.cachefly.net/4.0/tinymce.min.js"></script>'.n.script_js('tinymce.init({
	selector: "#image_caption",
	toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image"
});');
}

Last edited by etc (2014-01-16 18:18:05)

Offline

#4 2014-01-17 09:43:01

sacripant
Plugin Author
From: Rhône — France
Registered: 2008-06-01
Posts: 479
Website

Re: tiny_mce or textile_bar for image tab > caption textarea ?

Indeed, it will be a time that I take the time to learn the basics of php and plugins for Textpattern.

Offline

#5 2014-01-17 12:34:40

etc
Developer
Registered: 2010-11-11
Posts: 5,393
Website GitHub

Re: tiny_mce or textile_bar for image tab > caption textarea ?

sacripant wrote #278216:

Indeed, it will be a time that I take the time to learn the basics of php and plugins for Textpattern.

Meanwhile, here is all you need.

Offline

Board footer

Powered by FluxBB