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
#----------------------------------------------------------------------------- | |
# Copyright (c) 2006-2009 Gerard Flanagan | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining | |
# a copy of this software and associated documentation files (the "Software"), | |
# to deal in the Software without restriction, including without limitation | |
# the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
# and/or sell copies of the Software, and to permit persons to whom the | |
# Software is furnished to do so, subject to the following conditions: | |
# |
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
/** | |
* 指定日時によって内容を表示するショートコード | |
*/ | |
// [datecontent opendate="YmdH" closeDate="YmdH"] | |
function datecontent_func($atts, $content = null) { | |
$nowdate = date_i18n("YmdH"); // 現在の時間を取得 | |
extract(shortcode_atts(array( | |
'opendate' => null, | |
'closedate' => null, | |
), $atts)); |
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 | |
namespace Fuel\Migrations; | |
class Create_users | |
{ | |
public function up() | |
{ | |
\DBUtil::create_table('users', array( | |
'id' => array('constraint' => 11, 'type' => 'int', 'auto_increment' => true), |
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
/** | |
* @author Fumito MIZUNO http://php-web.net/ | |
* @license GPL ver.2 or later {@link http://www.gnu.org/copyleft/gpl.html} | |
*/ | |
add_action('wp_head','page_template_css') ; | |
function page_template_css() { | |
global $template; | |
$dir = '/css'; // (テーマ配下の)スタイルシートを入れるディレクトリを設定する | |
$pos = strrpos($template, "/"); | |
$template = substr($template, $pos); |
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 html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head profile="http://selenium-ide.openqa.org/profiles/test-case"> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<link rel="selenium.base" href="http://localhost:8888/" /> | |
<title>mamp</title> | |
</head> | |
<body> | |
<table cellpadding="1" cellspacing="1" border="1"> |
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 | |
defined('C5_EXECUTE') or die("Access Denied."); | |
// Put this file into concrete/startup/localization.php | |
function remove_percent_from_text($text) { | |
$removed = array('$','%'); | |
$no_var_text = str_replace($removed,'_',$text); | |
$no_var_text .= ' '; // Space for Readability | |
return $no_var_text; | |
} |
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 | |
/** | |
* Translated by Fumito MIZUNO ( http://ounziw.com/ ) | |
* License for translation: CC-BY-SA | |
*/ | |
/** | |
* Twenty Twelve 関数と定義 | |
* | |
* テーマをセットアップし、ヘルパー関数を提供する。 | |
* ヘルパー関数はテーマでカスタムテンプレートタグとして使用する。 |
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 html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta content="text/html; charset=UTF-8" http-equiv="content-type" /> | |
<title>Test Suite</title> | |
</head> | |
<body> | |
<table id="suiteTable" cellpadding="1" cellspacing="1" border="1" class="selenium"><tbody> | |
<tr><td><b>Test Suite</b></td></tr> |
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 WpautopTest extends PHPUnit_Framework_TestCase { | |
function autop_provider() | |
{ | |
return array( | |
array("<div>abcde\n\n</div>","<div>abcde\n</div>\n"), | |
array("<section>abcde\n\n</section>","<section>abcde\n</section>\n"), | |
); | |
} |
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 | |
// put this file into local/views/apps/noviusos_form | |
// License: AGPL ver3.0 or later | |
$css = <<<EOS | |
dl.check_before_send dt { | |
float: left; | |
clear: left; | |
width: 200px; |
OlderNewer