Hot answers tagged plugins
3
The eclipse marketplace version is the free Developer Edition. It runs completely within eclipse and there's no standalone Worklight server.
If you've install a separate Worklight server (on Liberty, WAS, or Tomcat) then you're running the Worklight Consumer or Worklight Enterprise edition and should use the studio plugin for that edition/version. As ...
2
I'm not sure I fully understand your question, but I think the claim
we have to effectively scan the directory, import, load, and instantiate each task just to call getHelp()
is not obviously true. For example, a class need not have an instance instantiated (heavy) in order to obtain static, compile-time data. The loader is quite fast, especially if ...
2
to have a callback into JavaScript you first need to pass a callback as input to your JSAPI plugins.
you can do this as follows:
in PluginTestAPI.cpp
registerMethod("SetCallback", make_method(this, &PluginTestAPI::SetCallback));
int PluginTestAPI::SetCallback(const FB::JSObjectPtr& callback)
{
m_CallBack = callback;
}
in PluginTestAPI.h
...
1
For the "Security" part (not accessible thru internet), the best is to have your wordpress website hosted on a local server. It makes it unaccessible from internet and will be fast thru wifi netowrk. You can use the domain name of the computer/server (computername.domain.com) to access your website.
For the plugin, Since there seems to be a lot of plugins ...
1
Look at the !important from css.
http://css-tricks.com/when-using-important-is-the-right-choice/
.email-sprite {
backgroun: url('your url') no-repeat !important;
}
1
You can download CKEditor-dev on github here then edit plugins and finally build CKEditor your release with :
./dev/builder/build.sh
A "release ready" working copy of your development code will be built in the new dev/builder/release/ folder.
1
you can use jquery mention inputs plugin its similar to facebook mentions
http://podio.github.io/jquery-mentions-input/
or you can use jquery sew plugin
https://github.com/tactivos/jquery-sew
1
You can use the JQuery UI widget: http://api.jqueryui.com/autocomplete/ which allows you to create a list of special words which will suggest + autocomplete te word when the user starts typing it.
You can handle the special formatted html by using the callback when a special word is chosen:
$( ".selector" ).autocomplete({
select: function( event, ui ) {}
...
1
I've got little to go on as your description of the system is a bit vague but I'll give it a shot.
From your description it seems you have some plugin, say
interface IPlugin {
PluginResult ReadAndExecuteEvents(Events e);
// Added asynchronous methods.
IAsyncResult BeginReadAndExecuteEvents(Events e, AsyncCallback cb, Object state);
...
1
You have two options for including files accessible at runtime:
Managed assets in Ressources folders accessible via Resources.Load
Un-managed assets in the StreamingAssets folder accessible via the File or WWW APIs
Your .properties file should probably reside in the StreamingAssets folder, if you don't need Unity3D to process it. Unity3D will optimize ...
1
I just spent a bit trying to resolve this myself for a similar issue trying to create a plugin to read various unsupported image formats. As far as I can tell, you can't really get a callback telling you when the view closes, since you hand the data off to Quick Look, so you can't really delete them later. If possible, try to convert it to an NSData object ...
1
The for loop's index (i) in your foreach method is being overwritten because you've declared it in the global scope. Always use var to declare variables:
for (var i = 0; i < this.element.length; i++) {
values[i] = callback.call(this, this.element[i], i);
}
DEMO: http://jsfiddle.net/QhXa7/
1
You can use wp_mail to send mail attachments-
<?php
$attachments = array(WP_CONTENT_DIR . '/uploads/file_to_attach.zip');
$headers = 'From: My Name <myname@mydomain.com>' . "\r\n";
wp_mail('test@test.com', 'subject', 'message', $headers, $attachments);
?>
For sending HTML content use this:
<?php
add_filter( 'wp_mail_content_type', ...
1
I know it's old but this thread was exactly what I needed.
The only caveat to numediaweb's answer is that remove action requires the same priority as the add action
Hooks in the plugin
add_action('wp_print_styles', 'easy_fancybox_enqueue_styles', 999);
add_action('wp_enqueue_scripts', 'easy_fancybox_enqueue_scripts', 999);
add_action('wp_head', ...
Only top voted, non community-wiki answers of a minimum length are eligible