This file contains hidden or 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
function entries() { | |
$parent_id = $this->EE->TMPL->fetch_param('parent_id', false); | |
if ($parent_id) { | |
$child_ids = $this->sql->get_child_entries($parent_id); | |
$fixed_order = $child_ids !== FALSE && count($child_ids > 0) ? implode('|', $child_ids) : false; | |
if ($fixed_order) { | |
$this->EE->TMPL->tagparams['fixed_order'] = $fixed_order; |
This file contains hidden or 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
./system/expressionengine/third_party/playa/ | |
diff /Volumes/HDD/Installers/CMS/EE/Playa4.3/Playa4/ee2/third_party/playa/ft.playa.php ./system/expressionengine/third_party/playa/ft.playa.php | |
1152a1153 | |
> array_unshift($authors, array('id' => 'related', 'title' => '— '.lang('related').' —')); | |
1525a1527,1592 | |
> // Related author? | |
> // ------------------------------------------- | |
> | |
> $add_to_sql = array(); | |
> if (($key = array_search('related', $this->settings['authors'])) !== FALSE) |
This file contains hidden or 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
#include "widget.h" | |
//total event controllers | |
#define MAX_EVENT_CONTROLLERS 10 | |
//event controller | |
typedef struct EVENT_CONTROLLER | |
{ |
This file contains hidden or 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 | |
///////////////////////////////////////////// | |
// Added hook call to EE_Extensions: | |
///////////////////////////////////////////// | |
class EE_Extensions { | |
... | |
function __construct() | |
{ | |
$this->EE =& get_instance(); |
This file contains hidden or 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
This is an example for how to display the label selected for a dropdown value | |
in the notification template. It is a bit verbose in the template code, | |
so I am planning to add a new option soon which will make extracting the | |
selected label as easy as getting the selected value. | |
Screenshots showing how to setup the form and the field to send an email to | |
the address set as the value for the same dropdown field: | |
Field settings for a field named "state": | |
* https://skitch.com/blueapples/8iwir/state-notification-field |
This file contains hidden or 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
403 Forbidden | |
/: 11 Time(s) | |
///recordings/misc/callme_page.php: 1 Time(s) | |
//admin/index.php: 3 Time(s) | |
//admin/phpmyadmin/index.php: 3 Time(s) | |
//admin/pma/index.php: 3 Time(s) | |
//db/index.php: 3 Time(s) | |
//dbadmin/index.php: 3 Time(s) | |
//index.php: 3 Time(s) | |
//myadmin/index.php: 2 Time(s) |
This file contains hidden or 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
var el = ( function () { | |
var doc = document; | |
var directProperties = { | |
'class': 'className', | |
className: 'className', | |
defaultValue: 'defaultValue', | |
'for': 'htmlFor', | |
html: 'innerHTML', |
This file contains hidden or 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 if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
// Note: not tested | |
class Https_ext { | |
public $settings = array(); | |
public $description = ''; | |
public $docs_url = ''; | |
public $name = 'HTTPS'; | |
public $settings_exist = 'n'; | |
public $version = '1.0'; | |
This file contains hidden or 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//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>beforeRunningCommand</key> | |
<string>nop</string> | |
<key>bundleUUID</key> | |
<string>0374A255-E6D9-4CD7-8FB6-4F7DAE99AFC7</string> | |
<key>command</key> | |
<string>read text |
This file contains hidden or 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 if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
/** | |
* @package CELL CMS | |
* @author Isaac Raway (MetaSushi, LLC) <[email protected]> | |
* | |
* Copyright (c)2009, 2010, 2011. Isaac Raway and MetaSushi, LLC. | |
* All rights reserved. | |
**/ |