Skip to content

Instantly share code, notes, and snippets.

if (isset($attachment['transformers'][$class])) {
return new $attachment['transformers'][$class]($options);
}
select id,
(SELECT GROUP_CONCAT(`COLUMN_NAME` SEPARATOR ', ')
FROM `INFORMATION_SCHEMA`.`COLUMNS`
WHERE `TABLE_SCHEMA`='heavysalvage'
AND `TABLE_NAME`='auctions'
AND COLUMN_NAME LIKE '%rear_%')
from auctions order by cab DESC;
<?php
public function live_table_reduce($columns, $listing)
{
foreach($listing->toArray() as $key=>$value){
if(is_array($value) && !empty($value['label'])){
$value = $value['label'];
}
$columns[$key]['data'][] = $value;
$columns[$key]['value'] = Inflector::humanize($key);
}
exec("echo '".CAKE_CORE_INCLUDE_PATH."/cake/console/cake subscriber email -auction_id ".$auction_id." -existing ".$existing." -app ".APP."' | at now");
<?php
$fields = [
'title' => 'Your listing needs a title',
'insurer_id' => 'Please specify an Insurer'
];
$rules = [];
foreach($fields as $field => $message){
$rules['location_' . $field] = [
<?php
public function testViewAuthenticated()
{
$this->session([
'Auth' => [
'User' => [
'permissions' => [
[
'label' => 'ViewInvoices'
<?php
public function testImplementedEvents()
{
$eventsToTest = [
'Table.Listings.bid_approved' => 'logUserApprovedBid',
'Table.Listings.bids_rejected' => 'logUserRejectBids',
'Table.Listings.bids_reset' => 'logUserResetBids',
'Table.Listings.publish' => 'logUserPublishListing',
{% extends "refeed/account/form.html" %}
{% block form_header %}
{% endblock form_header %}
{% block form_submit_controls %}
<input class="btn" type="submit" value="Save Password"/>
{% endblock form_submit_controls %}
<table className="table">
{this._getHeadings()}
<tbody ref="tbody">
{this.props.data.map((row, i) => {
return (
<tr key={'row_' + i}>
{this.props.selected_columns.map((column) => {
return (
<td className="no-wrap" key={row['id'] + '+' + column}>
<Field {...row}
@mergeweb
mergeweb / .sass-lint.yml
Last active January 30, 2018 15:57
Default Sass Lint File
#########################
## Sass Lint File
#########################
# sass-lint -v
# Linter Options
options:
# Don't merge default rules
merge-default-rules: false
# Set the formatter to 'stylish'
formatter: compact