propresenter7-php-lib/generated/Rv/Analytics/Startup/PlanningCenter.php
Thorsten Buss 4d10db4f17 Initial public release
PHP 8.4 library and CLI tools to read, modify, and generate ProPresenter 7
files: songs (.pro), playlists (.proplaylist), bundles (.probundle), themes,
and the global library files (Macros, Labels, Groups, ClearGroups, CCLI,
Messages, Timers, Stage, Workspace, Props, TestPatterns, Calendar,
KeyMappings, CommunicationDevices).

Built on the MIT-licensed ProPresenter7-Proto schema by greyshirtguy
(v7.16.2). Includes 18 CLI parsers, comprehensive API docs in doc/,
binary-format specs, and a synthetic 369-test PHPUnit suite covering
RTF extraction, translation slides, ZIP64 repair, round-trip fidelity,
and end-to-end generation.
2026-05-03 22:21:01 +02:00

222 lines
5.1 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: analyticsStartup.proto
namespace Rv\Analytics\Startup;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.analytics.Startup.PlanningCenter</code>
*/
class PlanningCenter extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>bool logged_in = 1;</code>
*/
protected $logged_in = false;
/**
* Generated from protobuf field <code>bool auto_update = 2;</code>
*/
protected $auto_update = false;
/**
* Generated from protobuf field <code>bool match_songs = 3;</code>
*/
protected $match_songs = false;
/**
* Generated from protobuf field <code>bool show_history = 4;</code>
*/
protected $show_history = false;
/**
* Generated from protobuf field <code>bool make_arrangements = 5;</code>
*/
protected $make_arrangements = false;
/**
* Generated from protobuf field <code>bool auto_upload = 6;</code>
*/
protected $auto_upload = false;
/**
* Generated from protobuf field <code>bool auto_download = 7;</code>
*/
protected $auto_download = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type bool $logged_in
* @type bool $auto_update
* @type bool $match_songs
* @type bool $show_history
* @type bool $make_arrangements
* @type bool $auto_upload
* @type bool $auto_download
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\AnalyticsStartup::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>bool logged_in = 1;</code>
* @return bool
*/
public function getLoggedIn()
{
return $this->logged_in;
}
/**
* Generated from protobuf field <code>bool logged_in = 1;</code>
* @param bool $var
* @return $this
*/
public function setLoggedIn($var)
{
GPBUtil::checkBool($var);
$this->logged_in = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool auto_update = 2;</code>
* @return bool
*/
public function getAutoUpdate()
{
return $this->auto_update;
}
/**
* Generated from protobuf field <code>bool auto_update = 2;</code>
* @param bool $var
* @return $this
*/
public function setAutoUpdate($var)
{
GPBUtil::checkBool($var);
$this->auto_update = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool match_songs = 3;</code>
* @return bool
*/
public function getMatchSongs()
{
return $this->match_songs;
}
/**
* Generated from protobuf field <code>bool match_songs = 3;</code>
* @param bool $var
* @return $this
*/
public function setMatchSongs($var)
{
GPBUtil::checkBool($var);
$this->match_songs = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool show_history = 4;</code>
* @return bool
*/
public function getShowHistory()
{
return $this->show_history;
}
/**
* Generated from protobuf field <code>bool show_history = 4;</code>
* @param bool $var
* @return $this
*/
public function setShowHistory($var)
{
GPBUtil::checkBool($var);
$this->show_history = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool make_arrangements = 5;</code>
* @return bool
*/
public function getMakeArrangements()
{
return $this->make_arrangements;
}
/**
* Generated from protobuf field <code>bool make_arrangements = 5;</code>
* @param bool $var
* @return $this
*/
public function setMakeArrangements($var)
{
GPBUtil::checkBool($var);
$this->make_arrangements = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool auto_upload = 6;</code>
* @return bool
*/
public function getAutoUpload()
{
return $this->auto_upload;
}
/**
* Generated from protobuf field <code>bool auto_upload = 6;</code>
* @param bool $var
* @return $this
*/
public function setAutoUpload($var)
{
GPBUtil::checkBool($var);
$this->auto_upload = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool auto_download = 7;</code>
* @return bool
*/
public function getAutoDownload()
{
return $this->auto_download;
}
/**
* Generated from protobuf field <code>bool auto_download = 7;</code>
* @param bool $var
* @return $this
*/
public function setAutoDownload($var)
{
GPBUtil::checkBool($var);
$this->auto_download = $var;
return $this;
}
}