Main Page

From GLMWiki
Revision as of 11:29, 23 February 2017 by Cscott (Talk | contribs)

Jump to: navigation, search

General Checklists

Policies and Proceedures

Services Documentation

Reference Information

Wordpress

Main checklist

Site Review

Go live checklist

Wordpress help

Helpful links for WordPress Standards

https://make.wordpress.org/core/handbook/best-practices/coding-standards/accessibility-coding-standards/

https://make.wordpress.org/core/handbook/best-practices/coding-standards/html/

https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/

https://make.wordpress.org/core/handbook/testing/automated-testing/phpunit/

https://make.wordpress.org/core/handbook/best-practices/inline-documentation-standards/php/

https://make.wordpress.org/core/handbook/best-practices/inline-documentation-standards/javascript/

https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards


  • Removing unneeded files from a Theme for WordPress Repo

git archive -o example.zip HEAD

GLM Associate

Unused, replaced by Wordpress New Single Site Install Checklist, but have to verify nothing of importance remains

Plugins

GLM Plugin Update Server

URL: http://www.gaslightmedia.com/update_server/

Setting up a GLM Associate plugin/add-on to use the update server.

  • If the plugin does not have this code in "defines.php", add it now and update the defined parameters for the current plugin.
 /*
  *  Create a copy of the plugin slug that can be used as a variable prefix used to keep
  *  global instances from clashing with instances in other plugins.
  */
 $vprefix = str_replace('-', '_', GLM_MEMBERS_PLUGIN_SLUG);
 define('GLM_MEMBERS_PLUGIN_PREFIX', $vprefix.'_');
  • Add "plugin-update-checker" directory and contents to "lib" directory. You may copy this directory from the glm-members-db plugin.
  • Add "opentools-update-checker" directory and contents to "lib" directory. You may copy this directory from the glm-members-db plugin.
  • Add the following code to the plugin index file. This can be near the bottom of the file or wherever convenient. Update the defined parameters for the current plugin.
 /*
  * Plugin Update Support - uses Gaslight Media update server
  */
 require GLM_MEMBERS_PLUGIN_LIB_PATH.'/opentools-update-checker/opentools-update-checker.php';
 ${GLM_MEMBERS_PLUGIN_PREFIX."updateChecker"} = new OpenToolsPluginUpdateChecker(
      'http://www.gaslightmedia.com/update_server/?action=get_metadata&slug='.GLM_MEMBERS_PLUGIN_SLUG,
     __FILE__,
     GLM_MEMBERS_PLUGIN_SLUG
 );
 ${GLM_MEMBERS_PLUGIN_PREFIX."updateChecker"}->declareCredentials(array(
   'license_key' => __('License Key:')
 ));
  • Add plugin ZIP file to GLMPluginFiles directory of Update Server. This is the command to build this zip file direct from the Git repository. Replace "{plugin slug}" with the slug for the current plugin.
 cd /var/www/server/gaslightmedia.com/web/update_server/GLMPluginFiles
 git archive --prefix={plugin slug}/ --format=zip -o {plugin slug}.zip --remote=git@cvs2.gaslightmedia.com:WP-Plugins/{plugin slug}.git HEAD

Code Snippets

Facebook

Sharing Best Practices for Website & Mobile Apps

FaceBook Sharing Best Practices

Open Graph Object Debugger

Adding Facebook pixel code

Known Errors and Bugs and their Solutions


Categories

Front End Development

company meeting


Legacy Code

Legacy Code