Skip to content

Instantly share code, notes, and snippets.

<?php
namespace App\Setting;
use Illuminate\Contracts\Support\Arrayable;
class SettingRequest implements Arrayable
{
protected $code;
protected function map(SoundGroupModel $soundGroupModel)
{
$soundGroupArray = $soundGroupModel->toArray();
$soundGroup = $this->mapper->map($soundGroupArray);
$customFiles = $soundGroup->getCustomFiles();
foreach ($soundGroupModel->files as $soundGroupFileModel) {
// Needed variables
$name = $soundGroupFileModel->name;
<?php
namespace Project\Planets;
class Planet
{
protected $name;
/**
* @var Resource[]
<?php
// call this method inside the method that shows the metabox contents
function prefix_upload_inputs() {
global $post;
wp_enqueue_media();
$scripts = "
<script type='text/javascript'>
jQuery(document).ready(function($){
@zogot
zogot / gist:5500940
Last active December 16, 2015 21:39 — forked from Clorith/gist:5500932
<?php
function breadcrumbs() {
?>
<?php if ( ! is_home() ) : ?>
<?php global $post; ?>
<a href="<?php bloginfo( 'wpurl' ); ?>">Home</a> &raquo;
<?php
@zogot
zogot / index.php
Created May 13, 2013 06:55
Limit WordPress content by words.
<?php // where 15 is the word limit ?>
<?php echo apply_filters( 'the_content', wp_trim_words( get_the_content(), 15, '&hellip;' ) ); ?>
@zogot
zogot / jquery.pronamic-media.js
Last active December 23, 2015 23:39
Pronamic WordPress Media jQuery Plugin
pronamicMedia = function(elem, options) {
this.elem = elem;
this.$elem = jQuery(elem);
this.options = options;
};
pronamicMedia.prototype = {
_frame:undefined
@zogot
zogot / functions-hooks-adverts.php
Last active December 26, 2015 05:19
Easily add posts into certain positions on WP_Query. Adverts example.
<?php
add_action( 'pre_get_posts', 'kwpn_advert_positions_pre_get_posts', 20 );
function kwpn_advert_positions_pre_get_posts( WP_Query $query ) {
// Only continue if the query chose to have adverts
if ( ! is_array( $query->get( 'kwpn_insert_adverts' ) ) )
return;
// Get the chosen advert positions
@zogot
zogot / meta-box-post_type.php
Last active December 31, 2015 12:19
Custom Meta Box Skeleton Code.
<?php
// Just replace pronamic with an unique identifier.
// and replace video with a slugname for your function of the box.
add_action( 'add_meta_boxes', 'wp_pronamic_add_meta_boxes' );
add_action( 'save_post', 'wp_pronamic_video_meta_box_save', 10, 2 );
function wp_pronamic_add_meta_boxes() {
add_meta_box( 'pronamic_video_meta_box', __( 'Review Rating', 'wp_vision' ), 'wp_pronamic_video_meta_box_show', 'pronamic', 'normal' );
}
function wp_pronamic_video_meta_box_show( WP_Post $post ) {
#
#
mtllib Millennium_Falcon.mtl
o MillenniumFalconBottom
v -36.893936 72.863998 357.389221
v -36.816784 72.863998 429.544434
v -46.681076 71.182709 436.585602
v -47.134781 71.182709 344.156738
v -46.511078 70.117912 264.955475
v -107.793953 70.942482 274.368286