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 | |
| /** | |
| * Plugin Name: Messager Widget | |
| * Plugin URI: http://point47.com | |
| * Description: Displays any message designated | |
| * Version: 1.0 | |
| * Author: Sorin Gitlan | |
| * Author URI: http://point47.com | |
| */ |
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 | |
| /** | |
| * Plugin Name: Twitter Shower | |
| * Plugin URI: http://esgy.eu | |
| * Description: Simple shortcode | |
| * Version: 1.0 | |
| * Author: Sorin Gitlan | |
| * Author URI: http://esgy.eu | |
| */ |
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 | |
| /** | |
| * Plugin Name: p47 Twitter Widget | |
| * Plugin URI: http://point47.com | |
| * Description: Displays any message designated | |
| * Version: 1.0 | |
| * Author: Sorin Gitlan | |
| * Author URI: http://point47.com | |
| */ |
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 | |
| /** | |
| * Plugin Name: p47 Cron Job | |
| * Plugin URI: http://point47.com | |
| * Description: demo for a running cron job | |
| * Version: 1.0 | |
| * Author: Sorin Gitlan | |
| * Author URI: http://point47.com | |
| */ |
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 | |
| /** | |
| * Plugin Name: p47 Options | |
| * Plugin URI: http://point47.com | |
| * Description: demo a options papge | |
| * Version: 1.0 | |
| * Author: Sorin Gitlan | |
| * Author URI: http://point47.com | |
| * | |
| * Use get_option('p47_plugin_options') in the template to access the saved variables. |
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 | |
| /** | |
| * Plugin Name: p47 Custom Post Types | |
| * Plugin URI: http://point47.com | |
| * Description: Demo for custom Post types | |
| * Version: 1.0 | |
| * Author: Sorin Gitlan | |
| * Author URI: http://point47.com | |
| */ |
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
| // Utility | |
| if (typeof Object.create !== 'function') { | |
| Object.create = function (obj) { | |
| "use strict"; | |
| function F() {} | |
| F.prototype = obj; | |
| return new F(); | |
| }; | |
| } |
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
| 'use strict'; | |
| angular.module('app') | |
| .directive('sgSlick', ['$timeout', function ($timeout) { | |
| return { | |
| restrict: 'AE', | |
| scope: { | |
| images: '=', |
OlderNewer