Plugin Directory

Changeset 2518274


Ignore:
Timestamp:
04/20/2021 11:37:16 AM (5 years ago)
Author:
ash_hitch
Message:

Update to version 0.0.3 from GitHub

Location:
add-wpgraphql-redirection
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • add-wpgraphql-redirection/tags/0.0.3/README.md

    r2514389 r2518274  
    99-   Install & activate [WPGraphQL](https://www.wpgraphql.com/)
    1010-   Install from the [WordPress Plugin Directory](https://wordpress.org/plugins/add-wpgraphql-redirection/)
    11 -   or Clone or download the zip of this repository into your WordPress plugin directory & activate the  plugin
    12 
     11-   or Clone or download the zip of this repository into your WordPress plugin directory & activate the plugin
    1312
    1413## Composer
     
    1716composer require ashhitch/wp-graphql-redirection
    1817```
    19 
    2018
    2119## Example Query
     
    2927    target
    3028    type
     29    matchType
    3130  }
    3231}
  • add-wpgraphql-redirection/tags/0.0.3/readme.txt

    r2514389 r2518274  
    55Tested up to: 5.7
    66Requires PHP: 7.1
    7 Stable tag: 0.0.2
     7Stable tag: 0.0.3
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    1717== Example Query ==
    1818
    19 ```graphql
     19`
    2020redirection {
    2121  redirects {
     
    2525    target
    2626    type
     27    matchType
    2728  }
    2829}
    29 ```
     30`
  • add-wpgraphql-redirection/tags/0.0.3/wp-graphql-redirection.php

    r2514389 r2518274  
    99 * Text Domain:     wp-graphql-redirection
    1010 * Domain Path:     /languages
    11  * Version:         0.0.2
     11 * Version:         0.0.3
    1212 *
    1313 * @package         WP_Graphql_REDIRECTION
     
    7272                'groupId' => ['type' => 'Int'],
    7373                'groupName' => ['type' => 'String'],
     74                'matchType' => ['type' => 'String'],
    7475            ],
    7576        ]);
     
    117118                            'groupId' => $row->group_id,
    118119                            'groupName' => $row->name,
     120                            'matchType' => $row->match_type,
    119121                        ];
    120122                    }
  • add-wpgraphql-redirection/trunk/README.md

    r2514389 r2518274  
    99-   Install & activate [WPGraphQL](https://www.wpgraphql.com/)
    1010-   Install from the [WordPress Plugin Directory](https://wordpress.org/plugins/add-wpgraphql-redirection/)
    11 -   or Clone or download the zip of this repository into your WordPress plugin directory & activate the  plugin
    12 
     11-   or Clone or download the zip of this repository into your WordPress plugin directory & activate the plugin
    1312
    1413## Composer
     
    1716composer require ashhitch/wp-graphql-redirection
    1817```
    19 
    2018
    2119## Example Query
     
    2927    target
    3028    type
     29    matchType
    3130  }
    3231}
  • add-wpgraphql-redirection/trunk/readme.txt

    r2514389 r2518274  
    55Tested up to: 5.7
    66Requires PHP: 7.1
    7 Stable tag: 0.0.2
     7Stable tag: 0.0.3
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    1717== Example Query ==
    1818
    19 ```graphql
     19`
    2020redirection {
    2121  redirects {
     
    2525    target
    2626    type
     27    matchType
    2728  }
    2829}
    29 ```
     30`
  • add-wpgraphql-redirection/trunk/wp-graphql-redirection.php

    r2514389 r2518274  
    99 * Text Domain:     wp-graphql-redirection
    1010 * Domain Path:     /languages
    11  * Version:         0.0.2
     11 * Version:         0.0.3
    1212 *
    1313 * @package         WP_Graphql_REDIRECTION
     
    7272                'groupId' => ['type' => 'Int'],
    7373                'groupName' => ['type' => 'String'],
     74                'matchType' => ['type' => 'String'],
    7475            ],
    7576        ]);
     
    117118                            'groupId' => $row->group_id,
    118119                            'groupName' => $row->name,
     120                            'matchType' => $row->match_type,
    119121                        ];
    120122                    }
Note: See TracChangeset for help on using the changeset viewer.