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
<?php | |
declare(strict_types=1); | |
namespace App\Providers; | |
use DOMDocument; | |
use Illuminate\Support\ServiceProvider; | |
class FeedServiceProvider extends ServiceProvider |
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
### Keybase proof | |
I hereby claim: | |
* I am chrillep on github. | |
* I am chrillep (https://keybase.io/chrillep) on keybase. | |
* I have a public key ASAQYOKsHewG37qDpS2LXhwkdjKQkuqH6F1BGX4RxBHjCAo | |
To claim this, I am signing this object: |
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
{ | |
"bokformat": [ | |
{ | |
"namn": "Vulkan Minipocket", | |
"bredd": 90, | |
"hojd": 150, | |
"value": 0.82 | |
}, | |
{ | |
"namn": "A6", |
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
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
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
function bootstrap_custom_wpsc_pagination($output){ | |
$output = '<nav><ul class="pagination">' . $output; | |
$output = str_replace( | |
array( '<a', '</a>',"<span class='current'>", '</span>', __('Pages: ','wpsc')), | |
array( '<li><a', '</a></li>','<li class="current active"><a href="#">', '<span class="sr-only">(current)</span></a></li>', '<li class="disabled"><span>' . __('Pages: ','wpsc') . '</span></li>'), | |
$output); | |
$output = $output . '</ul></nav>'; | |
return $output; | |
} | |
add_filter( 'wpsc_pagination', 'bootstrap_custom_wpsc_pagination' ); |