Skip to content

Commit

Permalink
Updated DocBlocks from http:// to https://. (PR #289)
Browse files Browse the repository at this point in the history
Part of #288
  • Loading branch information
ibes authored and hellofromtonya committed Jun 25, 2018
1 parent d07a196 commit 6a9e530
Show file tree
Hide file tree
Showing 21 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion 404.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* how to customize the Beans theme.
*
* @author Beans
* @link http://www.getbeans.io
* @link https://www.getbeans.io
* @package Beans\Framework
*/

Expand Down
2 changes: 1 addition & 1 deletion comments.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* how to customize the Beans theme.
*
* @author Beans
* @link http://www.getbeans.io
* @link https://www.getbeans.io
* @package Beans\Framework
*/

Expand Down
2 changes: 1 addition & 1 deletion footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* how to customize the Beans theme.
*
* @author Beans
* @link http://www.getbeans.io
* @link https://www.getbeans.io
* @package Beans\Framework
*/

Expand Down
4 changes: 2 additions & 2 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
* how to customize the Beans theme.
*
* @author Beans
* @link http://www.getbeans.io
* @link https://www.getbeans.io
* @package Beans\Framework
*/

/**
* Initialize Beans theme framework.
*
* @author Beans
* @link http://www.getbeans.io
* @link https://www.getbeans.io
*/

require_once dirname( __FILE__ ) . '/lib/init.php';
2 changes: 1 addition & 1 deletion header.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* how to customize Beans theme.
*
* @author Beans
* @link http://www.getbeans.io
* @link https://www.getbeans.io
* @package Beans\Framework
*/

Expand Down
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* how to customize Beans theme.
*
* @author Beans
* @link http://www.getbeans.io
* @link https://www.getbeans.io
* @package Beans\Framework
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/api/actions/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Hooks a callback (function or method) to a specific action event.
*
* This function is similar to {@link http://codex.wordpress.org/Function_Reference/add_action add_action()}
* This function is similar to {@link https://codex.wordpress.org/Function_Reference/add_action add_action()}
* with the exception of being registered by ID within Beans in order to be manipulated by the other Beans
* Actions functions.
*
Expand Down
8 changes: 4 additions & 4 deletions lib/api/compiler/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Compile CSS fragments and enqueue compiled file.
*
* This function should be used in a similar fashion to
* {@link http://codex.wordpress.org/Function_Reference/wp_enqueue_script wp_enqueue_script()}.
* {@link https://codex.wordpress.org/Function_Reference/wp_enqueue_script wp_enqueue_script()}.
*
* Fragments can be added to the compiler using {@see beans_compiler_add_fragment()}.
*
Expand Down Expand Up @@ -46,7 +46,7 @@ function beans_compile_css_fragments( $id, $fragments, $args = array() ) {
* Compile LESS fragments, convert to CSS and enqueue compiled file.
*
* This function should be used in a similar fashion to
* {@link http://codex.wordpress.org/Function_Reference/wp_enqueue_script wp_enqueue_script()}.
* {@link https://codex.wordpress.org/Function_Reference/wp_enqueue_script wp_enqueue_script()}.
*
* Fragments can be added to the compiler using {@see beans_compiler_add_fragment()}.
*
Expand Down Expand Up @@ -76,7 +76,7 @@ function beans_compile_less_fragments( $id, $fragments, $args = array() ) {
* Compile JS fragments and enqueue compiled file.
*
* This function should be used in a similar fashion to
* {@link http://codex.wordpress.org/Function_Reference/wp_enqueue_script wp_enqueue_script()}.
* {@link https://codex.wordpress.org/Function_Reference/wp_enqueue_script wp_enqueue_script()}.
*
* Fragments can be added to the compiler using {@see beans_compiler_add_fragment()}.
*
Expand Down Expand Up @@ -136,7 +136,7 @@ function _beans_compile_fragments( $id, $format, $fragments, array $args = array
* Add CSS, LESS or JS fragments to a compiler.
*
* This function should be used in a similar fashion to
* {@link http://codex.wordpress.org/Function_Reference/wp_enqueue_script wp_enqueue_script()}.
* {@link https://codex.wordpress.org/Function_Reference/wp_enqueue_script wp_enqueue_script()}.
*
* @since 1.0.0
*
Expand Down
2 changes: 1 addition & 1 deletion lib/api/compiler/vendors/lessc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2509,7 +2509,7 @@ protected function expressionList(&$exps) {

/**
* Attempt to consume an expression.
* @link http://en.wikipedia.org/wiki/Operator-precedence_parser#Pseudo-code
* @link https://en.wikipedia.org/wiki/Operator-precedence_parser#Pseudo-code
*/
protected function expression(&$out) {
if ($this->value($lhs)) {
Expand Down
6 changes: 3 additions & 3 deletions lib/api/filters/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* Hooks a callback (function or method) to a specific filter event.
*
* This function is similar to {@link http://codex.wordpress.org/Function_Reference/add_filter add_filter()}
* This function is similar to {@link https://codex.wordpress.org/Function_Reference/add_filter add_filter()}
* with the exception that it accepts a $callback_or_value argument which is used to automatically create an
* anonymous function.
*
Expand Down Expand Up @@ -39,7 +39,7 @@ function beans_add_filter( $hook, $callback_or_value, $priority = 10, $args = 1
/**
* Call the functions added to a filter hook.
*
* This function is similar to {@link http://codex.wordpress.org/Function_Reference/apply_filters apply_filters()}
* This function is similar to {@link https://codex.wordpress.org/Function_Reference/apply_filters apply_filters()}
* with the exception of creating sub-hooks if it is told to do so.
*
* Sub-hooks must be set in square brackets as part of the filter id argument. Sub-hooks are cascaded
Expand Down Expand Up @@ -111,7 +111,7 @@ function beans_apply_filters( $id, $value ) {
/**
* Check if any filter has been registered for a hook.
*
* This function is similar to {@link http://codex.wordpress.org/Function_Reference/has_filters has_filters()}
* This function is similar to {@link https://codex.wordpress.org/Function_Reference/has_filters has_filters()}
* with the exception of checking sub-hooks if it is told to do so.
*
* @since 1.0.0
Expand Down
2 changes: 1 addition & 1 deletion lib/api/post-meta/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* Get the post's meta value. When no post ID is given, get the current post's meta value.
*
* This function is a shortcut of {@link http://codex.wordpress.org/Function_Reference/get_post_meta get_post_meta()}.
* This function is a shortcut of {@link https://codex.wordpress.org/Function_Reference/get_post_meta get_post_meta()}.
*
* @since 1.0.0
*
Expand Down
2 changes: 1 addition & 1 deletion lib/api/utilities/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ function beans_esc_attributes( $attributes ) {
* Filter attributes escaping methods.
*
* For all unspecified selectors, values are automatically escaped using
* {@link http://codex.wordpress.org/Function_Reference/esc_attr esc_attr()}.
* {@link https://codex.wordpress.org/Function_Reference/esc_attr esc_attr()}.
*
* @since 1.3.1
*
Expand Down
2 changes: 1 addition & 1 deletion lib/api/utilities/polyfills.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* value recursively.
*
* @see PHP Manual
* @link http://php.net/manual/en/function.array-replace-recursive.php
* @link https://php.net/manual/en/function.array-replace-recursive.php
*
* Note: This function became available in PHP 5.3.0.
*
Expand Down
6 changes: 3 additions & 3 deletions lib/api/widget/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Register a widget area.
*
* Since a Beans widget area is using the WordPress sidebar, this function registers a WordPress sidebar using
* {@link http://codex.wordpress.org/Function_Reference/register_sidebar register_sidebar()}, with additional
* {@link https://codex.wordpress.org/Function_Reference/register_sidebar register_sidebar()}, with additional
* arguments.
*
* Note that the 'class', before_widget', 'after_widget', 'before_title' and 'after_title' arguments are not
Expand Down Expand Up @@ -79,7 +79,7 @@ function beans_register_widget_area( $args = array() ) {
*
* Since a Beans widget area is using the WordPress sidebar, this function deregisters the defined
* WordPress sidebar using
* {@link http://codex.wordpress.org/Function_Reference/unregister_sidebar unregister_sidebar()}.
* {@link https://codex.wordpress.org/Function_Reference/unregister_sidebar unregister_sidebar()}.
*
* @since 1.0.0
*
Expand All @@ -95,7 +95,7 @@ function beans_deregister_widget_area( $id ) {
* Check whether a widget area is in use.
*
* Since a Beans widget area is using the WordPress sidebar, this function checks if the defined sidebar
* is in use using {@link http://codex.wordpress.org/Function_Reference/is_active_sidebar is_active_sidebar()}.
* is in use using {@link https://codex.wordpress.org/Function_Reference/is_active_sidebar is_active_sidebar()}.
*
* @since 1.0.0
*
Expand Down
2 changes: 1 addition & 1 deletion lib/templates/fragments/post.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ function beans_post_image() {
*
* @since 1.2.5
*
* @param bool $edit True to use Beans Image API to handle the image edition (resize), false to let {@link http://codex.wordpress.org/Function_Reference/the_post_thumbnail the_post_thumbnail()} taking care of it. Default true.
* @param bool $edit True to use Beans Image API to handle the image edition (resize), false to let {@link https://codex.wordpress.org/Function_Reference/the_post_thumbnail the_post_thumbnail()} taking care of it. Default true.
*/
$edit = apply_filters( 'beans_post_image_edit', true );

Expand Down
2 changes: 1 addition & 1 deletion page.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* how to customize the Beans theme.
*
* @author Beans
* @link http://www.getbeans.io
* @link https://www.getbeans.io
* @package Beans\Framework
*/

Expand Down
2 changes: 1 addition & 1 deletion search.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* how to customize the Beans theme.
*
* @author Beans
* @link http://www.getbeans.io
* @link https://www.getbeans.io
* @package Beans\Framework
*/

Expand Down
2 changes: 1 addition & 1 deletion sidebar-primary.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* how to customize the Beans theme.
*
* @author Beans
* @link http://www.getbeans.io
* @link https://www.getbeans.io
* @package Beans\Framework
*/

Expand Down
2 changes: 1 addition & 1 deletion sidebar-secondary.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* how to customize the Beans theme.
*
* @author Beans
* @link http://www.getbeans.io
* @link https://www.getbeans.io
* @package Beans\Framework
*/

Expand Down
2 changes: 1 addition & 1 deletion sidebar.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* not overwrite this file.
*
* @author Beans
* @link http://www.getbeans.io
* @link https://www.getbeans.io
* @package Beans\Framework
*/

Expand Down
2 changes: 1 addition & 1 deletion single.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* how to customize the Beans theme.
*
* @author Beans
* @link http://www.getbeans.io
* @link https://www.getbeans.io
* @package Beans\Framework
*/

Expand Down

0 comments on commit 6a9e530

Please sign in to comment.