-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conflicts: bin/.travis.yml includes/db.php includes/db/install/wpdb.php phpcs.ruleset.xml stream.php tests/bootstrap.php
- Loading branch information
Showing
39 changed files
with
1,491 additions
and
1,057 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export PHPCS_GITHUB_SRC=x-team/PHP_CodeSniffer | ||
export PHPCS_GIT_TREE=subset-selection | ||
export WPCS_GIT_TREE=rule-subset-with-phpcs-pr | ||
export WPCS_STANDARD=WordPress:core-extra | ||
export PHPCS_IGNORE='tests/*,includes/vendor/*' |
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,14 @@ | |
class WP_Stream_Connector_Installer extends WP_Stream_Connector { | ||
|
||
/** | ||
* Context name | ||
* Context slug | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
frankiejarrett
Contributor
|
||
* | ||
* @var string | ||
*/ | ||
public static $name = 'installer'; | ||
|
||
/** | ||
* Actions registered for this context | ||
* Actions registered for this connector | ||
* | ||
* @var array | ||
*/ | ||
|
@@ -27,9 +27,9 @@ class WP_Stream_Connector_Installer extends WP_Stream_Connector { | |
); | ||
|
||
/** | ||
* Return translated context label | ||
* Return translated connector label | ||
* | ||
* @return string Translated context label | ||
* @return string Translated connector label | ||
*/ | ||
public static function get_label() { | ||
return __( 'Installer', 'stream' ); | ||
|
@@ -58,9 +58,9 @@ public static function get_action_labels() { | |
*/ | ||
public static function get_context_labels() { | ||
return array( | ||
'plugins' => __( 'Plugins', 'stream' ), | ||
'themes' => __( 'Themes', 'stream' ), | ||
'wordpress' => __( 'WordPress', 'stream' ), | ||
'plugins' => __( 'Plugins', 'default' ), | ||
'themes' => __( 'Themes', 'default' ), | ||
'wordpress' => __( 'WordPress', 'default' ), | ||
); | ||
} | ||
|
||
|
Oops, something went wrong.
1 comment
on commit b8b2d3b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lukecarbis This should probably say 'Connector' as well.