Решил проблему следующим образом:
в ck editor в ckeditor/plugins/image/dialogs/image.js
вставил такой кусочек кода:
,
{
id : 'colorBox',
type : 'select',
label : editor.lang.common.zoom,
'default' : '',
items :
[
[ editor.lang.common.notGallery , ''],
[ editor.lang.common.single , 'activeCBox']
],
setup : function( type, element )
{
if ( type == IMAGE )
{
var value = this.getValue();
this.setValue( element.getAttribute( 'class' ) );
}
},
commit : function(type, element) {
if ( type == IMAGE )
{
if ( this.getValue() || this.isChanged() )
element.setAttribute( 'class', this.getValue() );
}
}
}
а в вызове colorbox'а сделал так:
<script>
$(document).ready(function(){
$('img.activeCBox').click(function() {$(this).colorbox({href: $(this).attr('src')});
});
});
</script>