Changeset 2094271
- Timestamp:
- 05/24/2019 05:43:45 AM (7 years ago)
- Location:
- event-codes
- Files:
-
- 4 edited
-
tags/1.0.7/datasources/sources/class-event-codes-datasource-groot.php (modified) (1 diff)
-
tags/1.0.7/events/class-event-codes-event.php (modified) (2 diffs)
-
trunk/datasources/sources/class-event-codes-datasource-groot.php (modified) (1 diff)
-
trunk/events/class-event-codes-event.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
event-codes/tags/1.0.7/datasources/sources/class-event-codes-datasource-groot.php
r2094262 r2094271 13 13 setup_postdata( $post ); 14 14 $event = new Event_Codes_Event(); 15 $event->setID($post->ID); 15 16 $event->setTitle($post->post_title); 16 17 $event->setDescription($post->post_content,$atts['description']); -
event-codes/tags/1.0.7/events/class-event-codes-event.php
r2094262 r2094271 9 9 class Event_Codes_Event { 10 10 11 private $ID; 11 12 private $title; 12 13 private $title_link; … … 39 40 private $images; 40 41 42 public function getID() { 43 return $this->ID; 44 } 45 46 public function setID($ID) { 47 $this->ID = $ID; 48 } 49 41 50 public function getEvent() { 42 51 $event = get_object_vars($this); -
event-codes/trunk/datasources/sources/class-event-codes-datasource-groot.php
r2094262 r2094271 13 13 setup_postdata( $post ); 14 14 $event = new Event_Codes_Event(); 15 $event->setID($post->ID); 15 16 $event->setTitle($post->post_title); 16 17 $event->setDescription($post->post_content,$atts['description']); -
event-codes/trunk/events/class-event-codes-event.php
r2094262 r2094271 9 9 class Event_Codes_Event { 10 10 11 private $ID; 11 12 private $title; 12 13 private $title_link; … … 39 40 private $images; 40 41 42 public function getID() { 43 return $this->ID; 44 } 45 46 public function setID($ID) { 47 $this->ID = $ID; 48 } 49 41 50 public function getEvent() { 42 51 $event = get_object_vars($this);
Note: See TracChangeset
for help on using the changeset viewer.