Difference between revisions of "Main Page"

From GLMWiki
Jump to: navigation, search
(Policies and Proceedures)
(Policies and Proceedures)
Line 21: Line 21:
 
* [[Forms]]
 
* [[Forms]]
 
* [[GLM Website Standards]]
 
* [[GLM Website Standards]]
* [[GLM Liceense & Update Server]]
+
* [[GLM License & Update Server]]
  
 
== Services Documentation ==
 
== Services Documentation ==

Revision as of 15:48, 14 March 2017

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

***** THIS PROCEDURE IS PRELIMINARY - NOT WORKING ON MEMBERS DB YET *****

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.'_');
  • Make sure that "defines.php" has code to set the GLM_MEMBER_PLUGIN_HOST defined parameter.
 // Determine which system we're running on - If not provided, assume PRODUCTION
 $host = getenv('GLM_HOST_ID');
 if (trim($host) == ) {
     $host = 'PRODUCTION';
 }
 define('GLM_MEMBER_PLUGIN_HOST', $host);
  • Add the following to the bottom "defines.php". Adjust as needed.
 // Update Server
 if (GLM_MEMBER_PLUGIN_HOST == 'CHUCK') {
     define('GLM_MEMBERS_PLUGIN_UPDATE_SERVER', 'http://192.168.44.54/update_server');
 } else {
     define('GLM_MEMBERS_PLUGIN_UPDATE_SERVER', 'http://www.gaslightmedia.com/update_server');
 }
  • 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(
      GLM_MEMBERS_PLUGIN_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