Skip to content

Instantly share code, notes, and snippets.

View jardix22's full-sized avatar

Joseph Ramos jardix22

  • WeKnow
  • Puno, Perú
View GitHub Profile
<?php
/**
* Implements hook_install().
*/
function custom_entity_project_install() {
// Create Project Entity Type
$project = new EntityType();
$project->name = "eck_project";
@jardix22
jardix22 / 1.html
Last active March 6, 2017 16:09 — forked from mxriverlynn/1.html
Modal Bootstrap 3 + Marionette.js
<script id="modal-view-template" type="text/html">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
...
</div>