Plugin Directory

Changeset 1498227


Ignore:
Timestamp:
09/19/2016 03:16:55 PM (9 years ago)
Author:
smccafferty
Message:

Fixing non-static method deprecated notice, Removing usage of grunt-voce-plugins in favor of the individually used node modules

Location:
voce-seo/trunk
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • voce-seo/trunk/readme.txt

    r1344309 r1498227  
    11=== Voce SEO ===
    2 Contributors: voceplatforms, prettyboymp, matstars, kevinlangleyjr
     2Contributors: voceplatforms, prettyboymp, matstars, kevinlangleyjr, smccafferty
    33Tags: SEO
    44Requires at least: 3.7.0
    55Tested up to: 4.2.4
    6 Stable tag: 0.6.0
     6Stable tag: 0.6.2
    77License: GPLv2 or later
    88
     
    3232
    3333== Changelog ==
     34= Version 0.6.2 =
     35* Removing usage of grunt-voce-plugins in favor of the individually used node modules
     36
     37= Version 0.6.1 =
     38* Fixing non-static method deprecated notice
     39
    3440= Version 0.6.0 =
    3541* Adding more flexible support for other single post types
  • voce-seo/trunk/vendor/autoload.php

    r1344309 r1498227  
    55require_once __DIR__ . '/composer' . '/autoload_real.php';
    66
    7 return ComposerAutoloaderInit37665239d184aaad487429639b869c4c::getLoader();
     7return ComposerAutoloaderInit858e29fbdbed62872172eb1cf3550daf::getLoader();
  • voce-seo/trunk/vendor/composer/LICENSE

    r1344309 r1498227  
    11
    2 Copyright (c) 2015 Nils Adermann, Jordi Boggiano
     2Copyright (c) 2016 Nils Adermann, Jordi Boggiano
    33
    44Permission is hereby granted, free of charge, to any person obtaining a copy
  • voce-seo/trunk/vendor/composer/autoload_real.php

    r1344309 r1498227  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit37665239d184aaad487429639b869c4c
     5class ComposerAutoloaderInit858e29fbdbed62872172eb1cf3550daf
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInit37665239d184aaad487429639b869c4c', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInit858e29fbdbed62872172eb1cf3550daf', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInit37665239d184aaad487429639b869c4c', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInit858e29fbdbed62872172eb1cf3550daf', 'loadClassLoader'));
    2525
    26         $map = require __DIR__ . '/autoload_namespaces.php';
    27         foreach ($map as $namespace => $path) {
    28             $loader->set($namespace, $path);
    29         }
     26        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
     27        if ($useStaticLoader) {
     28            require_once __DIR__ . '/autoload_static.php';
    3029
    31         $map = require __DIR__ . '/autoload_psr4.php';
    32         foreach ($map as $namespace => $path) {
    33             $loader->setPsr4($namespace, $path);
    34         }
     30            call_user_func(\Composer\Autoload\ComposerStaticInit858e29fbdbed62872172eb1cf3550daf::getInitializer($loader));
     31        } else {
     32            $map = require __DIR__ . '/autoload_namespaces.php';
     33            foreach ($map as $namespace => $path) {
     34                $loader->set($namespace, $path);
     35            }
    3536
    36         $classMap = require __DIR__ . '/autoload_classmap.php';
    37         if ($classMap) {
    38             $loader->addClassMap($classMap);
     37            $map = require __DIR__ . '/autoload_psr4.php';
     38            foreach ($map as $namespace => $path) {
     39                $loader->setPsr4($namespace, $path);
     40            }
     41
     42            $classMap = require __DIR__ . '/autoload_classmap.php';
     43            if ($classMap) {
     44                $loader->addClassMap($classMap);
     45            }
    3946        }
    4047
    4148        $loader->register(true);
    4249
    43         $includeFiles = require __DIR__ . '/autoload_files.php';
     50        if ($useStaticLoader) {
     51            $includeFiles = Composer\Autoload\ComposerStaticInit858e29fbdbed62872172eb1cf3550daf::$files;
     52        } else {
     53            $includeFiles = require __DIR__ . '/autoload_files.php';
     54        }
    4455        foreach ($includeFiles as $fileIdentifier => $file) {
    45             composerRequire37665239d184aaad487429639b869c4c($fileIdentifier, $file);
     56            composerRequire858e29fbdbed62872172eb1cf3550daf($fileIdentifier, $file);
    4657        }
    4758
     
    5061}
    5162
    52 function composerRequire37665239d184aaad487429639b869c4c($fileIdentifier, $file)
     63function composerRequire858e29fbdbed62872172eb1cf3550daf($fileIdentifier, $file)
    5364{
    5465    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • voce-seo/trunk/voce-seo.php

    r1344309 r1498227  
    33/*
    44  Plugin Name: Voce SEO
    5   Version: 0.6.0
     5  Version: 0.6.2
    66  Plugin URI: http://voceconnect.com/
    77  Description: An SEO plugin taking things from both WP SEO and All in One SEO but leaving out the VIP incompatible pieces.
     
    535535    }
    536536
    537     private function is_singular_viewable_post_query() {
     537    private static function is_singular_viewable_post_query() {
    538538        $queried_object = get_queried_object();
    539539        if( is_a( $queried_object, 'WP_Post' ) ) {
Note: See TracChangeset for help on using the changeset viewer.