You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
2.4 KiB
117 lines
2.4 KiB
<?php |
|
class CreativeCommons |
|
{ |
|
|
|
public static $cc_jurisdiction_vals = array( |
|
'' => 'International', |
|
'ar' => 'Argentina', |
|
'au' => 'Australia', |
|
'at' => 'Austria', |
|
'be' => 'Belgium', |
|
'br' => 'Brazil', |
|
'bg' => 'Bulgaria', |
|
'ca' => 'Canada', |
|
'cl' => 'Chile', |
|
'cn' => 'ChinaMainland', |
|
'co' => 'Colombia', |
|
'hr' => 'Croatia', |
|
'cz' => 'CzechRepublic', |
|
'dk' => 'Denmark', |
|
'ec' => 'Ecuador', |
|
'fi' => 'Finland', |
|
'fr' => 'France', |
|
'de' => 'Germany', |
|
'gr' => 'Greece', |
|
'gt' => 'Guatemala', |
|
'hk' => 'HongKong', |
|
'hu' => 'Hungary', |
|
'in' => 'India', |
|
'il' => 'Israel', |
|
'it' => 'Italy', |
|
'jp' => 'Japan', |
|
'kr' => 'Korea', |
|
'lu' => 'Luxembourg', |
|
'mk' => 'Macedonia', |
|
'my' => 'Malaysia', |
|
'mt' => 'Malta', |
|
'mx' => 'Mexico', |
|
'nl' => 'Netherlands', |
|
'nz' => 'NewZealand', |
|
'no' => 'Norway', |
|
'pe' => 'Peru', |
|
'ph' => 'Philippines', |
|
'pl' => 'Poland', |
|
'pt' => 'Portugal', |
|
'pr' => 'PuertoRico', |
|
'ro' => 'Romania', |
|
'rs' => 'Serbia', |
|
'sg' => 'Singapore', |
|
'si' => 'Slovenia', |
|
'za' => 'SouthAfrica', |
|
'es' => 'Spain', |
|
'se' => 'Sweden', |
|
'ch' => 'Switzerland', |
|
'tw' => 'Taiwan', |
|
'th' => 'Thailand', |
|
'uk' => 'UK:England&Wales', |
|
'scotland' => 'UK:Scotland', |
|
'us' => 'UnitedStates', |
|
'vn' => 'Vietnam'); |
|
|
|
public static $cc_versions = array( |
|
''=>'3.0', |
|
'ar'=>'2.5', |
|
'au'=>'3.0', |
|
'at'=>'3.0', |
|
'be'=>'2.0', |
|
'br'=>'3.0', |
|
'bg'=>'2.5', |
|
'ca'=>'2.5', |
|
'cl'=>'2.0', |
|
'cn'=>'2.5', |
|
'co'=>'2.5', |
|
'hr'=>'3.0', |
|
'cz'=>'3.0', |
|
'dk'=>'2.5', |
|
'ec'=>'3.0', |
|
'fi'=>'1.0', |
|
'fr'=>'2.0', |
|
'de'=>'3.0', |
|
'gr'=>'3.0', |
|
'gt'=>'3.0', |
|
'hk'=>'3.0', |
|
'hu'=>'2.5', |
|
'in'=>'2.5', |
|
'il'=>'2.5', |
|
'it'=>'2.5', |
|
'jp'=>'2.0', |
|
'kr'=>'2.0', |
|
'lu'=>'3.0', |
|
'mk'=>'2.5', |
|
'my'=>'2.5', |
|
'mt'=>'2.5', |
|
'mx'=>'2.5', |
|
'nl'=>'3.0', |
|
'nz'=>'3.0', |
|
'no'=>'3.0', |
|
'pe'=>'2.5', |
|
'ph'=>'3.0', |
|
'pl'=>'3.0', |
|
'pt'=>'2.5', |
|
'pr'=>'3.0', |
|
'ro'=>'3.0', |
|
'rs'=>'3.0', |
|
'sg'=>'3.0', |
|
'si'=>'2.5', |
|
'za'=>'2.5', |
|
'es'=>'3.0', |
|
'se'=>'2.5', |
|
'ch'=>'2.5', |
|
'tw'=>'3.0', |
|
'th'=>'3.0', |
|
'uk'=>'2.0', |
|
'scotland'=>'2.5', |
|
'us'=>'3.0', |
|
'vn'=>'3.0'); |
|
|
|
} |