Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uw_cfg_common
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WCMS
uw_cfg_common
Commits
7c9ef360
Commit
7c9ef360
authored
4 years ago
by
Eric Bremner
Committed by
Igor Biki
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-4506: trying to get libraries api module working with mathjax
parent
4121384a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!46
Feature/istwcms 4569 ebremner twitter code
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Plugin/CKEditorPlugin/MathJaxPlugin.php
+36
-1
36 additions, 1 deletion
src/Plugin/CKEditorPlugin/MathJaxPlugin.php
with
36 additions
and
1 deletion
src/Plugin/CKEditorPlugin/MathJaxPlugin.php
+
36
−
1
View file @
7c9ef360
...
...
@@ -4,6 +4,7 @@ namespace Drupal\uw_cfg_common\Plugin\CKEditorPlugin;
use
Drupal\ckeditor\CKEditorPluginBase
;
use
Drupal\editor\Entity\Editor
;
use
Drupal\Core\Asset\LibrariesDirectoryFileFinder
;
/**
* Defines the "mathjax" plugin.
...
...
@@ -15,6 +16,38 @@ use Drupal\editor\Entity\Editor;
*/
class
MathJaxPlugin
extends
CKEditorPluginBase
{
/**
* Library file finder.
*
* @var \Drupal\Core\Asset\LibrariesDirectoryFileFinder
*/
protected
$libFileFinder
;
/**
* Constructs a BlockComponentRenderArray object.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin ID for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\Core\Asset\LibrariesDirectoryFileFinder $libFileFinder
* The library file finder.
*/
public
function
__construct
(
array
$configuration
,
$plugin_id
,
$plugin_definition
,
LibrariesDirectoryFileFinder
$libFileFinder
)
{
parent
::
__construct
(
$configuration
,
$plugin_id
,
$plugin_definition
);
$this
->
libFileFinder
=
$libFileFinder
;
}
/**
* {@inheritdoc}
*/
public
static
function
create
(
ContainerInterface
$container
,
array
$configuration
,
$plugin_id
,
$plugin_definition
)
{
return
new
static
(
$configuration
,
$plugin_id
,
$plugin_definition
,
$container
->
get
(
'library.libraries_directory_file_finder'
));
}
/**
* {@inheritdoc}
*/
...
...
@@ -47,10 +80,12 @@ class MathJaxPlugin extends CKEditorPluginBase {
* {@inheritdoc}
*/
public
function
getButtons
()
{
$lib
=
$this
->
libFileFinder
->
find
(
'ckeditor-mathjax'
);
$path
=
\Drupal
::
service
(
'file_system'
)
->
realpath
(
$lib
);
return
[
'Mathjax'
=>
[
'label'
=>
$this
->
t
(
'Math'
),
'image'
=>
drupal_get_path
(
'profile'
,
'uw_base_profile'
)
.
'/libraries/ckeditor-mathjax
/icons/mathjax.png'
,
'image'
=>
$path
.
'
/icons/mathjax.png'
,
],
];
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment