/home/suroeste/public_html/wp-content/plugins/woocommerce/src/Admin/Marketing
NameSizeModeActions
InstalledExtensions.php176950644editdlrm
MarketingCampaign.php28280644editdlrm
MarketingCampaignType.php29430644editdlrm
MarketingChannelInterface.php23030644editdlrm
MarketingChannels.php16240644editdlrm
Price.php8510644editdlrm
Edit: /home/suroeste/public_html/wp-content/plugins/woocommerce/src/Admin/Marketing/MarketingCampaign.php (2828B)
id = $id; $this->type = $type; $this->title = $title; $this->manage_url = $manage_url; $this->cost = $cost; $this->sales = $sales; } /** * Returns the marketing campaign's unique identifier. * * @return string */ public function get_id(): string { return $this->id; } /** * Returns the marketing campaign type. * * @return MarketingCampaignType */ public function get_type(): MarketingCampaignType { return $this->type; } /** * Returns the title of the marketing campaign. * * @return string */ public function get_title(): string { return $this->title; } /** * Returns the URL to manage the marketing campaign. * * @return string */ public function get_manage_url(): string { return $this->manage_url; } /** * Returns the cost of the marketing campaign with the currency. * * @return Price|null */ public function get_cost(): ?Price { return $this->cost; } /** * Returns the sales of the marketing campaign with the currency. * * @return Price|null */ public function get_sales(): ?Price { return $this->sales; } }