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
<!-- wp:template-part {"slug":"header","area":"header"} /--> | |
<!-- wp:template-part {"slug":"hidden-title"} /--> | |
<!-- wp:group {"tagName":"main","lock":{"move":false,"remove":false}} --> | |
<main class="wp-block-group"><!-- wp:group {"lock":{"move":false,"remove":true},"layout":{"inherit":true,"type":"constrained"}} --> | |
<div class="wp-block-group"><!-- wp:woocommerce/checkout --> | |
<div class="wp-block-woocommerce-checkout wc-block-checkout is-loading"><!-- wp:woocommerce/checkout-fields-block --> | |
<div class="wp-block-woocommerce-checkout-fields-block"><!-- wp:woocommerce/checkout-express-payment-block --> | |
<div class="wp-block-woocommerce-checkout-express-payment-block"></div> |
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
if [ $UID -eq 0 ]; then CARETCOLOR="red"; else CARETCOLOR="blue"; fi | |
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" | |
PROMPT='%{$reset_color%}%{${fg[green]}%}%3~ $(git_prompt_info)%{${fg_bold[$CARETCOLOR]}%}»%{${reset_color}%} ' | |
RPS1="${return_code}" | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}" |
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
import Vue from 'vue'; | |
export default class GroupsStore { | |
constructor() { | |
this.state = {}; | |
this.state.groups = {}; | |
this.state.pageInfo = {}; | |
} | |
setGroups(rawGroups, parent) { |
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 () { | |
var e = {}, t = {}, n = 0, | |
r = { | |
refreshStylesheets: function () { | |
function i(e) { | |
var t = document.location, | |
n = new RegExp("^\\.|^/(?!/)|^[\\w]((?!://).)*$|" + t.protocol + "//" + t.host); | |
return e.match(n) | |
} | |
var n = document.getElementsByTagName("head")[0], |
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 | |
class LoginForm extends CFormModel | |
{ | |
private $_loginLabel; | |
public $login; | |
public $password; | |
public $rememberMe; | |
/** |