parent
0f6b1be0e6
commit
6d43e6565e
|
@ -45,7 +45,7 @@ foreach($lines as $line) {
|
||||||
}
|
}
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
$calendars = OC_Calendar_Calendar::allCalendars(OCP\USER::getUser(), true);
|
$calendars = OC_Calendar_Calendar::allCalendars(OCP\USER::getUser(), 1);
|
||||||
$id = $calendars[0]['id'];
|
$id = $calendars[0]['id'];
|
||||||
foreach($uids as $uid) {
|
foreach($uids as $uid) {
|
||||||
$prefix=$suffix=$content=array();
|
$prefix=$suffix=$content=array();
|
||||||
|
|
|
@ -11,11 +11,11 @@ OCP\User::checkLoggedIn();
|
||||||
OCP\App::checkAppEnabled('calendar');
|
OCP\App::checkAppEnabled('calendar');
|
||||||
|
|
||||||
// Create default calendar ...
|
// Create default calendar ...
|
||||||
$calendars = OC_Calendar_Calendar::allCalendars(OCP\USER::getUser(), true);
|
$calendars = OC_Calendar_Calendar::allCalendars(OCP\USER::getUser(), 1);
|
||||||
// if( count($calendars) == 0){
|
if( count($calendars) == 0){
|
||||||
// OC_Calendar_Calendar::addCalendar(OCP\USER::getUser(),'Default calendar');
|
OC_Calendar_Calendar::addCalendar(OCP\USER::getUser(),'Default calendar');
|
||||||
// $calendars = OC_Calendar_Calendar::allCalendars(OCP\USER::getUser(), true);
|
$calendars = OC_Calendar_Calendar::allCalendars(OCP\USER::getUser(), 1);
|
||||||
// }
|
}
|
||||||
|
|
||||||
$eventSources = array();
|
$eventSources = array();
|
||||||
foreach($calendars as $calendar){
|
foreach($calendars as $calendar){
|
||||||
|
|
|
@ -44,13 +44,13 @@ class OC_Calendar_Calendar{
|
||||||
/**
|
/**
|
||||||
* @brief Returns the list of calendars for a specific user.
|
* @brief Returns the list of calendars for a specific user.
|
||||||
* @param string $uid User ID
|
* @param string $uid User ID
|
||||||
* @param boolean $active Only return calendars with this $active state, default(=false) is don't care
|
* @param boolean $active Only return calendars with this $active state, default(=null) is don't care
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public static function allCalendars($uid, $active=false){
|
public static function allCalendars($uid, $active=null){
|
||||||
$values = array($uid);
|
$values = array($uid);
|
||||||
$active_where = '';
|
$active_where = '';
|
||||||
if ($active === true){
|
if (!is_null($active) && $active){
|
||||||
$active_where = ' AND active = ?';
|
$active_where = ' AND active = ?';
|
||||||
$values[] = $active;
|
$values[] = $active;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
class OC_Search_Provider_Calendar extends OC_Search_Provider{
|
class OC_Search_Provider_Calendar extends OC_Search_Provider{
|
||||||
function search($query){
|
function search($query){
|
||||||
$calendars = OC_Calendar_Calendar::allCalendars(OCP\USER::getUser(), true);
|
$calendars = OC_Calendar_Calendar::allCalendars(OCP\USER::getUser(), 1);
|
||||||
if(count($calendars)==0 || !OCP\App::isEnabled('calendar')){
|
if(count($calendars)==0 || !OCP\App::isEnabled('calendar')){
|
||||||
//return false;
|
//return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue