Skip to content

Instantly share code, notes, and snippets.

@co3k
Created July 8, 2009 04:29
Show Gist options
  • Save co3k/142580 to your computer and use it in GitHub Desktop.
Save co3k/142580 to your computer and use it in GitHub Desktop.
AdminUser:
<?php for ($i = 0; $i < 100; $i++) : ?>
admin_user_<?php echo $i ?>:
username: "admin_<?php echo $i ?>"
password: "password"
<?php endfor; ?>
Member:
<?php for ($i = 1; $i <= 100; $i++) : ?>
member_<?php echo $i ?>:
name: "テスト<?php echo $i ?>君"
is_active: 1
<?php endfor; ?>
MemberConfig:
<?php for ($i = 1; $i <= 100; $i++) : ?>
member_<?php echo $i ?>_mail:
name: "pc_address"
value: "test<?php echo $i ?>@example.com"
Member: member_<?php echo $i ?>
member_<?php echo $i ?>_mobile_mail:
name: "mobile_address"
value: "test<?php echo $i ?>@ezweb.ne.jp"
Member: member_<?php echo $i ?>
member_<?php echo $i ?>_pass:
name: "password"
value: "<?php echo md5('ebiebi') ?>"
Member: member_<?php echo $i ?>
<?php endfor; ?>
first_member_mobile_config:
name: "mobile_address"
value: "ebishine@ezweb.ne.jp"
Member: first_member
MemberRelationship:
<?php for ($i = 1; $i <= 100; $i++) : ?>
member_relationship_<?php echo $i ?>_to:
Member: first_member
MemberRelatedByMemberIdFrom: member_<?php echo $i ?>
is_friend: true
member_relationship_<?php echo $i ?>_from:
MemberRelatedByMemberIdFrom: first_member
Member: member_<?php echo $i ?>
is_friend: true
<?php endfor; ?>
Blacklist:
<?php for ($i = 1; $i <= 100; $i++) : ?>
black_list_<?php echo $i ?>:
uid: "<?php echo md5($i); ?>"
<?php endfor; ?>
Community:
community_1:
name: "うべー"
community_category_id: 1
community_2:
name: "うべーべうー"
community_category_id: 1
community_3:
name: "うべーばうー"
community_category_id: 1
CommunityMember:
community_member_1:
Community: community_1
Member: member_1
position: "admin"
community_member_2:
Community: community_1
Member: member_2
community_member_3:
Community: community_1
Member: member_3
community_member_4:
Community: community_1
Member: member_4
community_member_5:
Community: community_2
Member: member_1
position: "admin"
community_member_6:
Community: community_3
Member: member_1
community_member_7:
Community: community_3
Member: member_2
CommunityConfig:
community_config_1:
name: "aaaaaaaa"
value: "aaaaaaa"
Community: community_1
community_config_2:
name: "aaaaaaaa"
value: "aaaaaaa"
Community: community_2
community_config_3:
name: "aaaaaaaa"
value: "aaaaaaa"
Community: community_3
CommunityEvent:
community_event_1:
name: "うべー"
body: "あばばばばばばばっば"
open_date: "2009-01-01 00:00:00"
open_date_comment: "aaaaa"
area: "aabababab"
Community: community_1
Member: member_1
CommunityEventMember:
event_member_1:
Member: member_1
CommunityEventComment:
community_event_comment_1:
number: 1
body: "あばばっばばばばばb"
CommunityEvent: community_event_1
Member: member_1
CommunityTopic:
community_topic_1:
name: "うべー"
body: "あばばばばばばばっば"
Community: community_1
Member: member_1
CommunityTopicComment:
community_topic_comment_1:
number: 1
body: "あばばっばばばばばb"
CommunityTopic: community_topic_1
Member: member_1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment