Merge branch 'uat' of bitbucket.org:venbainformationtechnology/vb_book into uat
This commit is contained in:
commit
c1066b0053
@ -355,7 +355,7 @@ class ApiIntegration extends ResourceController
|
||||
$this->logger->error("Api SaveBookDetails : Err = Image Data Not Found");
|
||||
}
|
||||
if (count($categories) > 0 && $last_insert_book_id != "") {
|
||||
//$this->save_categories_master_details($categories);
|
||||
$this->save_categories_master_details($categories);
|
||||
$extensive_correspondence .= " Its have " . count($categories) . " Categories";
|
||||
$basic_message .= " And Its have " . count($categories) . " Categories";
|
||||
$this->logger->info("Api SaveBookDetails : ".$extensive_correspondence);
|
||||
@ -1039,78 +1039,66 @@ class ApiIntegration extends ResourceController
|
||||
$response = ['status' => 204, 'message' => 'Data No Found'];
|
||||
}
|
||||
return $response;
|
||||
}
|
||||
}
|
||||
|
||||
public function save_categories_master_details($records)
|
||||
{
|
||||
$api_model = new ApiIntegrationModel();
|
||||
if (count($records) > 0) {
|
||||
$this->logger->info("Api SaveCategoriesMasterDetails : Categories Count = ".count($records));
|
||||
$existing_categories = $api_model->getData('category', ['isactive' => 1]);
|
||||
$request_categories = (array)$records;
|
||||
|
||||
$filteringExistingCategoriesWpApiId = [];
|
||||
$filteringRequestedCategoriesWpApiId = [];
|
||||
$commonCategoriesElement = [];
|
||||
if (!empty($existing_categories)) {
|
||||
for ($z = 0; $z < count($request_categories); $z++) {
|
||||
$filteringRequestedCategoriesWpApiId[$z] = $request_categories[$z]->id;
|
||||
}
|
||||
for ($y = 0; $y < count($existing_categories); $y++) {
|
||||
$filteringExistingCategoriesWpApiId[$y] = $existing_categories[$y]->wp_api_category_id;
|
||||
}
|
||||
|
||||
if (!empty($filteringExistingCategoriesWpApiId)) {
|
||||
$this->logger->info("Api SaveCategoriesMasterDetails : Incoming Categories Wp Id " .implode(",",$filteringRequestedCategoriesWpApiId));
|
||||
$this->logger->info("Api SaveCategoriesMasterDetails : Existing Categories Wp Id " .implode(",",$filteringExistingCategoriesWpApiId));
|
||||
$A = $filteringExistingCategoriesWpApiId;
|
||||
$B = $filteringRequestedCategoriesWpApiId;
|
||||
$missingCategoriesValues = array_diff($A, $B); //Find difference element in Existing Images only
|
||||
$commonCategoriesElement = array_intersect($A, $B);
|
||||
if (!empty($missingCategoriesValues)) {
|
||||
$this->logger->info("Api SaveCategoriesMasterDetails : Missing Categories Wp Id " .implode(",",$missingCategoriesValues)." Are inactived");
|
||||
$inactive_where = ['isactive' => 1];
|
||||
$inactive_whereIn[0] = 'wp_api_category_id';
|
||||
$inactive_whereIn[1] = $missingCategoriesValues;
|
||||
$api_model->inactiveMissingDetails('category', $inactive_where, $inactive_whereIn);
|
||||
}
|
||||
}
|
||||
$this->logger->info("Api SaveCategoriesMasterDetails : Master Categories Count = " . count($records));
|
||||
$where = ['isactive' => 1];
|
||||
$where_in = null;
|
||||
$existing_master_categories = $api_model->getData('category', $where);
|
||||
$request_master_categories = (array)$records;
|
||||
$common_master_categories = [];
|
||||
$filter_existing_master_categories_WPID = [];
|
||||
$filter_request_master_categories_WPID = [];
|
||||
if (!empty($request_master_categories)) {
|
||||
for ($z = 0; $z < count($request_master_categories); $z++) {
|
||||
$filter_request_master_categories_WPID[$z] = $request_master_categories[$z]->id;
|
||||
}
|
||||
|
||||
$where = ['isactive' => 1];
|
||||
if (!empty($commonCategoriesElement)) {
|
||||
$whereIn[0] = 'wp_api_category_id';
|
||||
$whereIn[1] = $commonCategoriesElement;
|
||||
} else {
|
||||
$whereIn = null;
|
||||
}
|
||||
$lastestActiveCategoriesData = $api_model->getData('category', $where, $whereIn);
|
||||
$this->logger->info("Api SaveCategoriesMasterDetails : lastest Active Book Categories Data Count " .count($lastestActiveCategoriesData));
|
||||
$book_category_data = [];
|
||||
$a = 0;
|
||||
foreach ($records as $r) {
|
||||
$categoryId = null;
|
||||
// Iterate through the array and find the 'book_img_id' based on 'wp_api_img_id'
|
||||
if (!empty($lastestActiveBookImageData)) {
|
||||
foreach ($lastestActiveBookImageData as $item) {
|
||||
if ($item->wp_api_category_id == $r->id) {
|
||||
$categoryId = $item->id;
|
||||
break; // Found the match, no need to continue looping
|
||||
}
|
||||
}
|
||||
}
|
||||
$book_category_data[$a]['id'] = $categoryId;
|
||||
$book_category_data[$a]['name'] = $r->name;
|
||||
$book_category_data[$a]['wp_api_category_id'] = $r->id;
|
||||
$book_category_data[$a]['parent_wp_api_category_id'] =NULL;
|
||||
$a++;
|
||||
$this->logger->info("Api SaveCategoriesMasterDetails : Categories Data = $a Request data to save master = ".json_encode($book_category_data));
|
||||
} // loop closed
|
||||
$extensive_correspondence = (!empty($book_image_data) ? $api_model->insertAndUpdateChildDetails($book_category_data, 'category', 'id') : "");
|
||||
$this->logger->info("Api SaveCategoriesMasterDetails : ".$extensive_correspondence);
|
||||
} // count closed
|
||||
else{
|
||||
$this->logger->error("Api SaveCategoriesMasterDetails : Err = Categories Data Not Found");
|
||||
$this->logger->info("Api SaveCategoriesMasterDetails : Incoming Categories Wp Id " . implode(",", $filter_request_master_categories_WPID));
|
||||
}
|
||||
if (!empty($existing_master_categories)) {
|
||||
for ($y = 0; $y < count($existing_master_categories); $y++) {
|
||||
$filter_existing_master_categories_WPID[$y] = $existing_master_categories[$y]->wp_api_category_id;
|
||||
}
|
||||
$this->logger->info("Api SaveCategoriesMasterDetails : Existing Categories Wp Id " . implode(",", $filter_existing_master_categories_WPID));
|
||||
}
|
||||
if (!empty($filter_existing_master_categories_WPID)) {
|
||||
$common_master_categories = array_intersect($filter_existing_master_categories_WPID, $filter_request_master_categories_WPID);
|
||||
if (!empty($common_master_categories)) {
|
||||
$where_in[0] = 'wp_api_category_id';
|
||||
$where_in[1] = $common_master_categories;
|
||||
}
|
||||
}
|
||||
$lastestActiveMasterCategoriesData = $api_model->getData('category', $where, $where_in);
|
||||
$this->logger->info("Api SaveCategoriesMasterDetails : lastest Active Book Categories Data Count " . count($lastestActiveMasterCategoriesData));
|
||||
$book_category_data = [];
|
||||
$a = 0;
|
||||
foreach ($request_master_categories as $r) {
|
||||
$masterCategoryId = null;
|
||||
if (!empty($lastestActiveMasterCategoriesData)) {
|
||||
foreach ($lastestActiveMasterCategoriesData as $l) {
|
||||
if ($l->wp_api_category_id == $r->id) {
|
||||
$masterCategoryId = $l->id; //local category id from Master Table
|
||||
break; // Found the match, no need to continue looping
|
||||
}
|
||||
}
|
||||
}
|
||||
$book_category_data[$a]['id'] = $masterCategoryId;
|
||||
$book_category_data[$a]['name'] = $r->name;
|
||||
$book_category_data[$a]['wp_api_category_id'] = $r->id;
|
||||
$book_category_data[$a]['business_id'] = 1;
|
||||
$book_category_data[$a]['parent_wp_api_category_id'] = NULL;
|
||||
$a++;
|
||||
$this->logger->info("Api SaveCategoriesMasterDetails : Categories Data = $a Request data to save on master category = " . json_encode($book_category_data));
|
||||
} // loop closed
|
||||
$message = (!empty($book_category_data) ? $api_model->insertAndUpdateChildDetails($book_category_data, 'category', 'id') : "Info : New Categories Not Avaialble to Save");
|
||||
$this->logger->info("Api SaveCategoriesMasterDetails : " . $message);
|
||||
} // count closed
|
||||
else {
|
||||
$this->logger->error("Api SaveCategoriesMasterDetails : Err = Categories Data Not Found");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -6,42 +6,47 @@
|
||||
|
||||
<!-- Footer Start -->
|
||||
<footer class="footer">
|
||||
<!-- About us modal content -->
|
||||
<div id="about-us" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-dialog modal-sm modal-right">
|
||||
<!-- about us modal content -->
|
||||
<div class="modal fade" id="about-us" tabindex="-1" role="dialog" aria-labelledby="scrollableModalTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-scrollable" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header border-0">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="scrollableModalTitle">ABOUT US</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="text-center">
|
||||
<h4 class="mt-0">ABOUT US</h4><br>
|
||||
<p><strong>Vijayabharatham Prasuram</strong> is a prominent publication house in South India based at Chennai with its presence spread across the world among the Tamil speaking masses.</p><br>
|
||||
<p>Having been in publication domain for quite some years and have published many books of national interest and social importance, <strong>Vijayabharatham Prasuram</strong> is determined to reach out everyone with an objective of bringing out publications which will build and strengthen our National unity and integrity on the basis of our ancient Dharma, Samskriti and Traditions of our Motherland Bharath.</p>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<p><strong><?= $company_name; ?></strong> is a prominent publication house in South India based at Chennai with its presence spread across the world among the Tamil speaking masses.</p><br>
|
||||
<p>Having been in publication domain for quite some years and have published many books of national interest and social importance, <strong><?= $company_name; ?></strong> is determined to reach out everyone with an objective of bringing out publications which will build and strengthen our National unity and integrity on the basis of our ancient Dharma, Samskriti and Traditions of our Motherland Bharath.</p>
|
||||
</div>
|
||||
</div><!-- /.modal-content -->
|
||||
</div><!-- /.modal-dialog -->
|
||||
</div><!-- /.modal -->
|
||||
<!-- contact us modal content -->
|
||||
<div id="contact-us" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-dialog modal-xl modal-right">
|
||||
<div class="modal fade" id="contact-us" tabindex="-1" role="dialog" aria-labelledby="scrollableModalTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-scrollable" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header border-0">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="scrollableModalTitle">CONTACT US</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<h4 class="mt-0 text-center">CONTACT US</h4><br>
|
||||
<div class="modal-body">
|
||||
<ul class="social-list list-inline mt-1 mb-2" style="text-align:left; line-height : 34px;">
|
||||
<ul class="social-list list-inline" style="text-align:left; line-height : 25px;">
|
||||
<li><a href="javascript: void(0);" class="border-purple text-purple"><i class="mdi mdi-cellphone-android"></i> +91 <?= $company_mobile_no; ?></a></li>
|
||||
<li><a href="javascript: void(0);" class="border-danger text-danger"><i class="mdi mdi-email-variant"></i> <?= $company_email; ?> </a></li>
|
||||
<li><a href="javascript: void(0);" class="border-secondary text-secondary"><i class="mdi mdi-badge-account-horizontal"><span class="text-center"> <?= $company_address; ?> </span></i></a></li>
|
||||
</ul>
|
||||
<?php if ((int)$bid == 1) : ?>
|
||||
<div class="text-center">
|
||||
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d1943.2153606988807!2d80.24498103526862!3d13.071866380546599!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x7dfd98350be12c35!2sVijayabharatham%20Prasuram!5e0!3m2!1sen!2sin!4v1640691535042!5m2!1sen!2sin" width="650" height="350" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
|
||||
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d1943.2153606988807!2d80.24498103526862!3d13.071866380546599!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x7dfd98350be12c35!2sVijayabharatham%20Prasuram!5e0!3m2!1sen!2sin!4v1640691535042!5m2!1sen!2sin" width="450" height="350" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<?php if ((int)$bid == 1) : ?>
|
||||
<div class="text-center mb-1">
|
||||
<ul class="social-list list-inline mb-0">
|
||||
<li class="list-inline-item">
|
||||
<a href="https://www.facebook.com/VijayabharathamPrasuram" target="_blank" class="social-list-item border-purple text-purple"><i class="mdi mdi-facebook"></i></a>
|
||||
@ -53,18 +58,22 @@
|
||||
<a href="https://www.youtube.com/channel/UC-TRVAGrjSNMFgQU3sJSGdA" target="_blank" class="social-list-item border-danger text-danger"><i class="mdi mdi-youtube"></i></a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</div><!-- end -->
|
||||
|
||||
<?php endif; ?>
|
||||
</div><!-- /.modal-content -->
|
||||
</div><!-- /.modal-dialog -->
|
||||
</div><!-- /.modal -->
|
||||
<div id="privacy-policy" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-dialog modal-xl modal-right">
|
||||
<!-- privacy policy modal content -->
|
||||
<div class="modal fade" id="privacy-policy" tabindex="-1" role="dialog" aria-labelledby="scrollableModalTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-scrollable" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header border-0">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="scrollableModalTitle">Privacy Policy</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<h4 class="mt-0 text-center">Privacy Policy</h4><br>
|
||||
<div class="modal-body">
|
||||
<p>All transactions and transmission of information on vijayabharathambooks.com is secured using Secure Socket Layer (SSL), the Internet’s standard – and best – technology for secure shopping.
|
||||
We are committed to protecting your privacy. We do not sell, trade, or rent your personal information to others. We will not disclose collected information to any government agency without your consent, except where authorised or required by law.
|
||||
@ -101,21 +110,24 @@
|
||||
<p>We reserve the right to modify this privacy policy at any time, so please review it frequently. Changes and clarifications will take effect immediately upon their posting on the website. If we make material changes to this policy, we will notify you here that it has been updated, so that you are aware of what information we collect, how we use it, and under what circumstances, if any, we use and/or disclose it.
|
||||
If our store is acquired or merged with another company, your information may be transferred to the new owners so that we may continue to sell products to you.</p>
|
||||
<p><strong>Questions And Contact Information</strong></p>
|
||||
<p>If you would like to: access, correct, amend or delete any personal information we have about you, register a complaint, or simply want more information contact our Privacy Compliance Officer at contact@vijayabharathambooks.com.</p>
|
||||
<p>If you would like to: access, correct, amend or delete any personal information we have about you, register a complaint, or simply want more information contact our Privacy Compliance Officer at <?= $company_email; ?>.</p>
|
||||
</div>
|
||||
</div><!-- /.modal-content -->
|
||||
</div><!-- /.modal-dialog -->
|
||||
</div><!-- /.modal -->
|
||||
<div id="terms-conditions" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-dialog modal-xl modal-right">
|
||||
<!-- terms conditions modal content -->
|
||||
<div class="modal fade" id="terms-conditions" tabindex="-1" role="dialog" aria-labelledby="scrollableModalTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-scrollable" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header border-0">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="scrollableModalTitle">Terms & Conditions</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<h4 class="mt-0 text-center">Terms & Conditions</h4><br>
|
||||
<div class="modal-body">
|
||||
<p><strong>Overview</strong></p>
|
||||
<p>This website – https://vijayabharathambooks.com – is operated by Vijayabharatham Prasuram Trust Throughout the site, the terms “we”, “us” and “our” refer to Vijayabharatham Prasuram Trust. We offer this website, including all information, tools and services available from this site to you, the user, conditioned upon your acceptance of all terms, conditions, policies and notices stated here.</p>
|
||||
<p>This website – <?= $footer_about; ?> – is operated by Vijayabharatham Prasuram Trust Throughout the site, the terms “we”, “us” and “our” refer to Vijayabharatham Prasuram Trust. We offer this website, including all information, tools and services available from this site to you, the user, conditioned upon your acceptance of all terms, conditions, policies and notices stated here.</p>
|
||||
<p>By visiting our site and / or purchasing something from us, you engage in our “Service” and agree to be bound by the following terms and conditions (“Terms of Service”, “Terms”), including those additional terms and conditions and policies referenced herein and / or available by hyperlink. These Terms of Service apply to all users of the site, including without limitation users who are browsers, vendors, customers, merchants, and/ or contributors of content.</p>
|
||||
<p>Please read these Terms of Service carefully before accessing or using our website. By accessing or using any part of the site, you agree to be bound by these Terms of Service. If you do not agree to all the terms and conditions of this agreement, then you may not access the website or use any services. If these Terms of Service are considered an offer, acceptance is expressly limited to these Terms of Service.</p>
|
||||
<p>Any new features or tools which are added to the current store shall also be subject to the Terms of Service. You can review the most current version of the Terms of Service at any time on this page. We reserve the right to update, change or replace any part of these Terms of Service by posting updates and/or changes to our website. It is your responsibility to check this page periodically for changes. Your continued use of or access to the website following the posting of any changes constitutes acceptance of those changes.</p>
|
||||
@ -225,19 +237,24 @@
|
||||
<li>We reserve the right, at our sole discretion, to update, change or replace any part of these Terms of Service by posting updates and changes to our website. It is your responsibility to check our website periodically for changes. Your continued use of or access to our website or the Service following the posting of any changes to these Terms of Service constitutes acceptance of those changes.</li>
|
||||
</ul>
|
||||
<p><strong>Section 20 – Contact Information</strong></p>
|
||||
<p>Questions about the Terms of Service should be sent to us at contact@vijayabharathambooks.com.</p>
|
||||
<p>Questions about the Terms of Service should be sent to us at <?= $company_email; ?>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</div><!-- /.modal-content -->
|
||||
</div><!-- /.modal-dialog -->
|
||||
</div><!-- /.modal -->
|
||||
<div id="delivery-payments-refunds" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-dialog modal-xl modal-right">
|
||||
<!-- delivery-payments-refunds modal content -->
|
||||
<div class="modal fade" id="delivery-payments-refunds" tabindex="-1" role="dialog" aria-labelledby="scrollableModalTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-scrollable" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header border-0">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="scrollableModalTitle">Delivery, Payments & Refunds</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<h4 class="mt-0 text-center">Delivery, Payments & Refunds</h4><br>
|
||||
|
||||
|
||||
<div class="modal-body">
|
||||
<p>
|
||||
<p><strong>Processing your order</strong></p>
|
||||
@ -256,7 +273,7 @@
|
||||
<li>To complete your return, we require a receipt or proof of purchase.</li>
|
||||
<li>Please do not send your purchase back to the manufacturer.</li>
|
||||
<li>Any item not in its original condition is damaged or missing parts for reasons not due to our error is not eligible for return.</li>
|
||||
<li>To process a return please write an email to contact@vijayabharathambooks.com with order ID or invoice in attachment. Consequently you can also fill in return form at</li>
|
||||
<li>To process a return please write an email to <?= $company_email; ?> with order ID or invoice in attachment. Consequently you can also fill in return form at</li>
|
||||
</ul>
|
||||
<p><strong>Refunds (if applicable)</strong></p>
|
||||
<ul>
|
||||
@ -269,13 +286,13 @@
|
||||
<li>If you haven’t received a refund yet, first check your bank account again.</li>
|
||||
<li>Then contact your credit card company, it may take some time before your refund is officially posted.</li>
|
||||
<li>Next contact your bank. There is often some processing time before a refund is posted.</li>
|
||||
<li>If you’ve done all of this and you still have not received your refund yet, please contact us at contact@vijayabharathambooks.com.</li>
|
||||
<li>If you’ve done all of this and you still have not received your refund yet, please contact us at <?= $company_email; ?>.</li>
|
||||
</ul>
|
||||
<p><strong>Sale items (if applicable)</strong></p>
|
||||
<p>Only regular priced items may be refunded, unfortunately sale items cannot be refunded.</p>
|
||||
|
||||
<p><strong>Exchanges (if applicable)</strong></p>
|
||||
<p>We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at contact@vijayabharathambooks.com.</p>
|
||||
<p>We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at <?= $company_email; ?>.</p>
|
||||
|
||||
<p><strong>Return/Exchange Shipping</strong></p>
|
||||
<ul>
|
||||
@ -296,8 +313,8 @@
|
||||
<!-- <script>document.write(new Date().getFullYear())</script> © <?= $company_name; ?> -->
|
||||
<script>
|
||||
document.write(new Date().getFullYear())
|
||||
</script> © <?= ((int)$bid != 1) ? $company_name : "<a href='https://vijayabharathambooks.com/'>" . $company_name . "</a>"; ?>
|
||||
<!-- <p> <?= date('Y') ?> © <?= $company_name; ?>.</p>
|
||||
</script> © <?= "<a href=".$footer_about." target='_blank' >".$company_name."</a>"; ?>
|
||||
<!-- <p> <?= date('Y') ?> © <?= $company_name; ?>.</p>
|
||||
<p> <?= date('Y') ?> © <?= $company_name; ?>. Page rendered in {elapsed_time} seconds</p> -->
|
||||
|
||||
|
||||
@ -305,15 +322,14 @@
|
||||
<div class="col-md-7">
|
||||
<div class="text-md-right footer-links d-none d-sm-block">
|
||||
<?php if ((int)$bid == 1) : ?>
|
||||
<a style="margin-left : 0.45rem !important" data-toggle="modal" data-target="#about-us">About Us</a>
|
||||
<a style="margin-left : 0.45rem !important" data-toggle="modal" data-target="#privacy-policy">Privacy Policy</a>
|
||||
<a style="margin-left : 0.45rem !important" data-toggle="modal" data-target="#terms-conditions">Terms & Conditions</a>
|
||||
<a style="margin-left : 0.45rem !important" data-toggle="modal" data-target="#delivery-payments-refunds">Delivery, Payments & Refunds</a>
|
||||
<a style="margin-left : 0.45rem !important" data-toggle="modal" data-target="#contact-us">Contact Us</a>
|
||||
<a style="margin-left : 0.45rem !important;font-size: 0.75rem !important;" data-toggle="modal" data-target="#about-us">About Us</a>
|
||||
<a style="margin-left : 0.45rem !important;font-size: 0.75rem !important;" data-toggle="modal" data-target="#privacy-policy">Privacy Policy</a>
|
||||
<a style="margin-left : 0.45rem !important;font-size: 0.75rem !important;" data-toggle="modal" data-target="#terms-conditions">Terms & Conditions</a>
|
||||
<a style="margin-left : 0.45rem !important;font-size: 0.75rem !important;" data-toggle="modal" data-target="#delivery-payments-refunds">Delivery, Payments & Refunds</a>
|
||||
<a style="margin-left : 0.45rem !important;font-size: 0.75rem !important;" data-toggle="modal" data-target="#contact-us">Contact Us</a>
|
||||
<?php endif; ?>
|
||||
<?php if ((int)$bid != 1) : ?>
|
||||
<a href="javascript:void(0);">About Us</a>
|
||||
<a href="javascript:void(0);">Help</a>
|
||||
<a data-toggle="modal" data-target="#about-us">About Us</a>
|
||||
<a data-toggle="modal" data-target="#contact-us">Contact Us</a>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
BIN
public/uploads/avatar.png
Executable file
BIN
public/uploads/avatar.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 24 KiB |
Loading…
Reference in New Issue
Block a user