Exemple #1
0
/**
 * Return a list of today's entities.
 *
 * @see list_notable_entities
 *
 * @param string  $type           The type of entity (eg "user", "object" etc)
 * @param string  $subtype        The arbitrary subtype of the entity
 * @param int     $owner_guid     The GUID of the owning user
 * @param int     $limit          The number of entities to return; 10 by default
 * @param boolean $fullview       Whether or not to display the full view (default: true)
 * @param boolean $listtypetoggle Whether or not to allow gallery view
 * @param boolean $navigation     Display pagination? Default: true
 *
 * @return string A viewable list of entities
 * @access private
 * @deprecated 1.9
 */
function list_todays_entities($type = "", $subtype = "", $owner_guid = 0, $limit = 10, $fullview = true, $listtypetoggle = false, $navigation = true)
{
    elgg_deprecated_notice('list_todays_entities() has been deprecated', 1.9);
    $day_start = get_day_start();
    $day_end = get_day_end();
    return list_notable_entities($day_start, $day_end, $type, $subtype, $owner_guid, $limit, $fullview, $listtypetoggle, $navigation);
}
Exemple #2
0
 /**
  * Set the time and duration of an object
  *
  * @param int $hour     If ommitted, now is assumed.
  * @param int $minute   If ommitted, now is assumed.
  * @param int $second   If ommitted, now is assumed.
  * @param int $day      If ommitted, now is assumed.
  * @param int $month    If ommitted, now is assumed.
  * @param int $year     If ommitted, now is assumed.
  * @param int $duration Duration of event, remainder of the day is assumed.
  *
  * @return true
  * @todo Unimplemented
  */
 public function setCalendarTimeAndDuration($hour = NULL, $minute = NULL, $second = NULL, $day = NULL, $month = NULL, $year = NULL, $duration = NULL)
 {
     $start = mktime($hour, $minute, $second, $month, $day, $year);
     $end = $start + abs($duration);
     if (!$duration) {
         $end = get_day_end($day, $month, $year);
     }
     $this->calendar_start = $start;
     $this->calendar_end = $end;
     return true;
 }
Exemple #3
0
/**
 * Return a list of today's entities.
 *
 * @see list_notable_entities
 *
 * @param string  $type           The type of entity (eg "user", "object" etc)
 * @param string  $subtype        The arbitrary subtype of the entity
 * @param int     $owner_guid     The GUID of the owning user
 * @param int     $limit          The number of entities to return; 10 by default
 * @param boolean $fullview       Whether or not to display the full view (default: true)
 * @param boolean $listtypetoggle Whether or not to allow gallery view
 * @param boolean $navigation     Display pagination? Default: true
 *
 * @return string A viewable list of entities
 * @access private
 */
function list_todays_entities($type = "", $subtype = "", $owner_guid = 0, $limit = 10, $fullview = true, $listtypetoggle = false, $navigation = true)
{
    $day_start = get_day_start();
    $day_end = get_day_end();
    return list_notable_entities($day_start, $day_end, $type, $subtype, $owner_guid, $limit, $fullview, $listtypetoggle, $navigation);
}
Exemple #4
0
 /**
  * Set the time and duration of an object
  *
  * @param int $hour     If ommitted, now is assumed.
  * @param int $minute   If ommitted, now is assumed.
  * @param int $second   If ommitted, now is assumed.
  * @param int $day      If ommitted, now is assumed.
  * @param int $month    If ommitted, now is assumed.
  * @param int $year     If ommitted, now is assumed.
  * @param int $duration Duration of event, remainder of the day is assumed.
  *
  * @return true
  * @deprecated 1.9
  */
 public function setCalendarTimeAndDuration($hour = null, $minute = null, $second = null, $day = null, $month = null, $year = null, $duration = null)
 {
     elgg_deprecated_notice(__METHOD__ . ' has been deprecated', 1.9);
     $start = mktime($hour, $minute, $second, $month, $day, $year);
     $end = $start + abs($duration);
     if (!$duration) {
         $end = get_day_end($day, $month, $year);
     }
     $this->calendar_start = $start;
     $this->calendar_end = $end;
     return true;
 }