This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Drupal\cron_module_cron\Namespace; | |
public $myData = [ | |
'title' => 'Toto', | |
'body' => 'blablabla', | |
'other_field_name' => '...' | |
]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var callBack = function(func){ | |
if (typeof plugin.settings[func] === 'function' && plugin.settings[func] !== '') { | |
return plugin.settings[func](); | |
} | |
else{ | |
throw new Error('callback not a function'); | |
} | |
}; | |
callBack('onSomething'); |
NewerOlder