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 | |
/** | |
* sfWidgetFormInputTel | |
* | |
* @auther 77web<[email protected]> | |
*/ | |
class sfWidgetFormInputTel extends sfWidgetForm | |
{ | |
protected $widgets = array(); | |
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 | |
/** | |
* This class has been auto-generated by the Doctrine ORM Framework | |
*/ | |
class Version2 extends Doctrine_Migration_Base | |
{ | |
public function up() | |
{ | |
$this->addColumn('product', 'memo', 'string', '', array( | |
)); |
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
Product: | |
columns: | |
id: | |
type: serial | |
primary: true | |
name: | |
type: string(255) | |
notnull: true | |
price: | |
type: integer |
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 | |
/** | |
* This class has been auto-generated by the Doctrine ORM Framework | |
*/ | |
class Version1 extends Doctrine_Migration_Base | |
{ | |
public function up() | |
{ | |
$this->addColumn('product', 'description', 'string', '', array( | |
)); |
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
Product: | |
columns: | |
id: | |
type: serial | |
primary: true | |
name: | |
type: string(255) | |
notnull: true | |
price: | |
type: integer |
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
Product: | |
columns: | |
id: | |
type: serial | |
primary: true | |
name: | |
type: string(255) | |
notnull: true | |
price: | |
type: integer |
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 | |
/** | |
* sfWidgetFormDoctrineHierSelect represents a hierarchical selects with jquery help. | |
* | |
* @auther Hiromi Hishida<[email protected]> | |
*/ | |
class sfWidgetFormDoctrineHierSelect extends sfWidgetForm | |
{ | |
/** |
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
opAlbumPlugin: | |
install: false | |
opAshiatoPlugin: | |
install: false | |
opBlogPlugin: | |
install: false | |
opCalendarPlugin: |
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 | |
require_once(dirname(__FILE__).'/TwitterOAuth.class.php'); | |
class opAuthWithTwitterPluginTweet | |
{ | |
protected static $consumer_secret; | |
protected static $consumer_key; | |
protected static $oauth_token; |