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
/*------------------------------------------------------------------------- | |
Role Manager: (replace in members/extension.driver.php when using Abffilter) | |
-------------------------------------------------------------------------*/ | |
public function checkFrontendPagePermissions($context) { | |
$isLoggedIn = false; | |
$errors = array(); | |
// Checks $_REQUEST to see if a Member Action has been requested, | |
// member-action['login'] and member-action['logout']/?member-action=logout |
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
<airports> | |
<airport iata="AAA">Anaa Airport</airport> | |
<airport iata="AAB">Arrabury Airport</airport> | |
<airport iata="AAC">El Arish International Airport</airport> | |
<airport iata="AAE">Annaba Airport</airport> | |
<airport iata="AAF">Apalachicola Regional Airport</airport> | |
<airport iata="AAG">Arapoti Airport</airport> | |
<airport iata="AAH"></airport> | |
<airport iata="AAI">Arraias Airport</airport> | |
<airport iata="AAJ">Cayana Airstrip</airport> |
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
<!-- Start --> | |
<xsl:apply-templates select="airports/airport"> | |
<xsl:with-param name="position" select="'start'" /> | |
</xsl:apply-templates> | |
<!-- End --> | |
<xsl:apply-templates select="airports/airport"> | |
<xsl:with-param name="position" select="'end'" /> | |
</xsl:apply-templates> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output method="html" | |
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" | |
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" | |
omit-xml-declaration="yes" | |
encoding="UTF-8" | |
indent="yes" /> | |
<xsl:template match="/"> |
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 extension_custom_api extends Extension { | |
public function about() { | |
return array( | |
'name' => 'Custom API', | |
'version' => '1.0', | |
'release-date' => '2012-22-08', | |
'author' => array( | |
'name' => '3Degrees Agency', |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>Alchemist</string> | |
<key>settings</key> | |
<array> | |
<dict> | |
<key>settings</key> |
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
// Includes | |
@import 'jeet' |
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
<stylus> | |
form | |
width 600px | |
margin 0 auto | |
.field-block | |
position relative | |
height 55px | |
margin 10px 0 | |
text-align left | |
label, input, textarea |
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
<IfModule mod_mime.c> | |
AddType text/css .css | |
AddType text/x-component .htc | |
AddType application/x-javascript .js | |
AddType application/javascript .js2 | |
AddType text/javascript .js3 | |
AddType text/x-js .js4 | |
AddType text/html .html .htm | |
AddType text/richtext .rtf .rtx | |
AddType image/svg+xml .svg .svgz |
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
$.magnificPopup.open({ | |
items: { | |
src: '#popup', | |
type: 'inline' | |
}, | |
removalDelay: 400, | |
callbacks: { | |
open: function () { | |
this.content.velocity('transition.slideDownIn', { | |
duration: 400 |
OlderNewer