Version Notes
Fix for using https in back office
Download this release
Release Info
Developer | Magento Core Team |
Extension | Order_tickets |
Version | 1.0.5 |
Comparing to | |
See all releases |
Code changes from version 1.0.4 to 1.0.5
app/code/community/Laurent/OrderTickets/Block/Adminhtml/Chat/View/Tab/Tickets.php
CHANGED
@@ -36,7 +36,7 @@ class Laurent_OrderTickets_Block_Adminhtml_Chat_View_Tab_Tickets extends Mage_Ad
|
|
36 |
}
|
37 |
|
38 |
public function getPostAnswerUrl(){
|
39 |
-
return
|
40 |
}
|
41 |
}
|
42 |
|
36 |
}
|
37 |
|
38 |
public function getPostAnswerUrl(){
|
39 |
+
return $this->getUrl('*/*/answerPost');
|
40 |
}
|
41 |
}
|
42 |
|
app/code/community/Laurent/OrderTickets/Block/Chat.php
CHANGED
@@ -54,7 +54,7 @@ class Laurent_OrderTickets_Block_Chat extends Mage_Core_Block_Template {
|
|
54 |
* @return string
|
55 |
*/
|
56 |
public function getBackUrl(){
|
57 |
-
return
|
58 |
}
|
59 |
|
60 |
/**
|
@@ -62,7 +62,7 @@ class Laurent_OrderTickets_Block_Chat extends Mage_Core_Block_Template {
|
|
62 |
* @return string
|
63 |
*/
|
64 |
public function getSendTicketPostUrl(){
|
65 |
-
return
|
66 |
}
|
67 |
|
68 |
}
|
54 |
* @return string
|
55 |
*/
|
56 |
public function getBackUrl(){
|
57 |
+
return $this->getUrl('sales/order/history');
|
58 |
}
|
59 |
|
60 |
/**
|
62 |
* @return string
|
63 |
*/
|
64 |
public function getSendTicketPostUrl(){
|
65 |
+
return $this->getUrl('*/*/ticketPost');
|
66 |
}
|
67 |
|
68 |
}
|
app/code/community/Laurent/OrderTickets/Block/Order/Tabs.php
CHANGED
@@ -32,7 +32,7 @@ class Laurent_OrderTickets_Block_Order_Tabs extends Mage_Core_Block_Template {
|
|
32 |
* @return string
|
33 |
*/
|
34 |
public function getOrderViewLink(){
|
35 |
-
return
|
36 |
}
|
37 |
|
38 |
/**
|
@@ -40,7 +40,7 @@ class Laurent_OrderTickets_Block_Order_Tabs extends Mage_Core_Block_Template {
|
|
40 |
* @return string
|
41 |
*/
|
42 |
public function getOrderChatLink(){
|
43 |
-
return
|
44 |
}
|
45 |
|
46 |
/**
|
32 |
* @return string
|
33 |
*/
|
34 |
public function getOrderViewLink(){
|
35 |
+
return $this->getUrl(self::ORDER_VIEW_LINK, array('order_id' => $this->getOrder()->getId()));
|
36 |
}
|
37 |
|
38 |
/**
|
40 |
* @return string
|
41 |
*/
|
42 |
public function getOrderChatLink(){
|
43 |
+
return $this->getUrl(self::ORDER_CHAT_LINK, array('order_id' => $this->getOrder()->getId()));
|
44 |
}
|
45 |
|
46 |
/**
|
app/code/community/Laurent/OrderTickets/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Laurent_OrderTickets>
|
5 |
-
<version>1.0.
|
6 |
</Laurent_OrderTickets>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Laurent_OrderTickets>
|
5 |
+
<version>1.0.5</version>
|
6 |
</Laurent_OrderTickets>
|
7 |
</modules>
|
8 |
<global>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Order_tickets</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/afl-3.0.php">Academic Free License (AFL 3.0)</license>
|
7 |
<channel>community</channel>
|
@@ -11,11 +11,11 @@
|
|
11 |
- customer can add message to orders
|
12 |
- administrator can see thes messages, reply to them and change status of a chat
|
13 |
- a cron also exists to send a reminder email to administrator about new messages</description>
|
14 |
-
<notes>Fix in
|
15 |
<authors><author><name>Laurent Clouet</name><user>auto-converted</user><email>laurent35240@gmail.com</email></author></authors>
|
16 |
-
<date>2011-
|
17 |
-
<time>
|
18 |
-
<contents><target name="magecommunity"><dir name="Laurent"><dir name="OrderTickets"><dir name="Block"><dir name="Adminhtml"><dir name="Chat"><dir name="View"><dir name="Tab"><file name="Main.php" hash="7ecd14eb6520037b80d171201b09a1a0"/><file name="Tickets.php" hash="
|
19 |
<compatible/>
|
20 |
<dependencies/>
|
21 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Order_tickets</name>
|
4 |
+
<version>1.0.5</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/afl-3.0.php">Academic Free License (AFL 3.0)</license>
|
7 |
<channel>community</channel>
|
11 |
- customer can add message to orders
|
12 |
- administrator can see thes messages, reply to them and change status of a chat
|
13 |
- a cron also exists to send a reminder email to administrator about new messages</description>
|
14 |
+
<notes>Fix for using https in back office</notes>
|
15 |
<authors><author><name>Laurent Clouet</name><user>auto-converted</user><email>laurent35240@gmail.com</email></author></authors>
|
16 |
+
<date>2011-08-01</date>
|
17 |
+
<time>19:16:32</time>
|
18 |
+
<contents><target name="magecommunity"><dir name="Laurent"><dir name="OrderTickets"><dir name="Block"><dir name="Adminhtml"><dir name="Chat"><dir name="View"><dir name="Tab"><file name="Main.php" hash="7ecd14eb6520037b80d171201b09a1a0"/><file name="Tickets.php" hash="f5db58785feb531e5c874e272ff7e6ca"/></dir><file name="Form.php" hash="c6b0a9e3ee8f74e03ad8bd91f6dd54ad"/><file name="Tabs.php" hash="f2ced70970ffaa74b7478709088ff146"/></dir><file name="Grid.php" hash="1254b6c710f7c3c77a1e78c188372727"/><file name="View.php" hash="bcb470a6e4e442129dd6c798b11576d4"/></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Tickets.php" hash="4be3b09ea9ad7265fc04ac82db5e8653"/></dir></dir></dir><dir name="Order"><dir name="View"><dir name="Tab"><file name="Tickets.php" hash="39efa19606e5a65d92a3cafa4e83f72e"/></dir></dir></dir><file name="Chat.php" hash="1e64e9e58574cdf03e3765e2578a8dee"/></dir><dir name="Order"><file name="Tabs.php" hash="362c07b1138c110dc270d26b1636f59b"/></dir><file name="Chat.php" hash="77536ef68fe6a21ee58c6672d78a0120"/></dir><dir name="Helper"><file name="Data.php" hash="2b6517dae27dd5154075dea1ed329293"/></dir><dir name="Model"><dir name="Config"><file name="Cron.php" hash="1c4e850b9f7c772390e89b2ce4971a86"/></dir><dir name="Mysql4"><dir name="Chat"><file name="Collection.php" hash="2bc9017a38a52d99f5af7716df5724a3"/></dir><dir name="Ticket"><file name="Collection.php" hash="83b7bd93adc9b8e8c2767aa814d38c08"/></dir><file name="Chat.php" hash="bf438bbfe69eb42c73ef6f1774c74ebe"/><file name="Ticket.php" hash="bb305039b5fc4640efce960d039979cd"/></dir><file name="Abstract.php" hash="5ec0482cd76b8273c555ddaaaa339b22"/><file name="Chat.php" hash="3dac1681629ddd1a13e1d9262038baf0"/><file name="Observer.php" hash="74716dbbfd538381a08aa6e68479c286"/><file name="Ticket.php" hash="acef6bed5b8e78250123c652f5a610ac"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ChatController.php" hash="cced2fff5120c06edd5b432d17483619"/></dir><file name="ChatController.php" hash="5121a7b2220ffa73e446e19914af5b59"/></dir><dir name="doc"><dir name="screeenshots"><file name="bo_order_tickets_tab.png" hash="ca1d6d13d53cc6a1c2af3c9b4bfa61a9"/><file name="bo_ticket_details.png" hash="7228ed41de8dfe0626bdcadbeae05f4b"/><file name="bo_ticket_tickets.png" hash="7491fb1b62a9352d1abe9bdbbd6bc845"/><file name="bo_tickets_grid.png" hash="1270d49ebe5bb6c93420ad8f7a9ba08f"/><file name="fo_tickets_on_order.png" hash="e8a7af6d00a3c19d8de4a66d022b2988"/></dir><file name="EVOLUTIONS.txt" hash="0a8331edd958a989a0ba023ade61ba7e"/><file name="INSTALL.txt" hash="316098ba4cebfa621753e18d550880fe"/><file name="logo.png" hash="2a863ae353401ed20c679782b8e694bf"/><file name="logo.svg" hash="eb6d4bd165834e3fd308c421c6a6e9bd"/><file name="tables_scheme.graphml" hash="66b71ac524ad926ba5a4c110840f5b57"/><file name="tables_scheme.jpg" hash="c26b66b1381efa32c7140892e11932ba"/></dir><dir name="etc"><file name="config.xml" hash="fe72a012add6fab03c5fbf206a3737fd"/><file name="system.xml" hash="37739c5007d90bdf7ee8cbe567e98b6a"/></dir><dir name="sql"><dir name="ordertickets_setup"><file name="mysql4-install-0.1.0.php" hash="d0b81bbbd209f3741f3a1610197155f8"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="00f3ac0bcd2b467affce40b6f507cbcc"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="ordertickets.xml" hash="b956aaf75b258d4677e6ba54974a8397"/></dir><dir name="template"><dir name="ordertickets"><dir name="chat"><dir name="view"><dir name="tab"><file name="tickets.phtml" hash="8843f45ab15ab1159cd78daa9af1e5a5"/></dir></dir></dir><dir name="order"><dir name="view"><dir name="tab"><file name="tickets.phtml" hash="d989be63e673e14fd7754d9d77a548c8"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="ordertickets.xml" hash="ff2e6b3a75dcf121fdc5a11bc320d46f"/></dir><dir name="template"><dir name="ordertickets"><dir name="order"><file name="tabs.phtml" hash="3a146acbd5ef5af0a7c939f60ee4c383"/></dir><file name="chat.phtml" hash="2c87d7b906dd80ebdfd86dcf2aadd755"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Laurent_OrderTickets.xml" hash="46fdc0a685ad8d9144f4db4cb99f97fe"/></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Laurent_OrderTickets.csv" hash="fc98199584867d140ba7e21cbb17ee49"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><file name="ordertickets.css" hash="f009140fffa838b6b3a3bfe011cebaa2"/></dir></dir></dir></dir></target></contents>
|
19 |
<compatible/>
|
20 |
<dependencies/>
|
21 |
</package>
|