Marcus Neto (@marcusneto) ~ Selling ExpressionEngine
- Slides: ?
<?php | |
use Illuminate\Auth\UserInterface; | |
use Illuminate\Auth\Reminders\RemindableInterface; | |
use \Eloquent; | |
class User extends Eloquent implements UserInterface, RemindableInterface | |
{ |
curl -sS https://getcomposer.org/installer | php |
/* Within container */ | |
.Absolute-Center { | |
width: 50%; | |
height: 50%; | |
overflow: auto; | |
margin: auto; | |
position: absolute; | |
top: 0; left: 0; bottom: 0; right: 0; | |
} |
<?php | |
$data = array(); | |
$query = $this->EE->db->select('member_id') | |
->from('db_table') | |
->where('entry_id', $entry_id) | |
->where_in('dummy_column', array_keys($another_data)) | |
->get(); | |
foreach( $query->result() as $row ) |
<script type="text/javascript"> | |
_gaq.push(['_trackPageview', '/zoeken/?zoekwaarde={exp:low_search:keywords query="{segment_2}" format="url"}']); | |
</script> |
/* For modern browsers */ | |
.cf:before, | |
.cf:after { | |
content:""; | |
display:table; | |
} | |
.cf:after { | |
clear:both; | |
} |
.hide-text { | |
text-indent: 100%; | |
white-space: nowrap; | |
overflow: hidden; | |
} |