Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 6026 | Rev 6037 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6026 Rev 6027
Línea 1322... Línea 1322...
1322
    followers: "$follower",
1322
    followers: "$follower",
1323
    image: "$image",
1323
    image: "$image",
1324
    overview: "$overview",
1324
    overview: "$overview",
1325
    locations: JSON.parse('$jsonLocations'),
1325
    locations: JSON.parse('$jsonLocations'),
1326
    industry: "$industry",
1326
    industry: "$industry",
1327
    companySize: "$company_size"
1327
    companySize: "$company_size",
-
 
1328
    companyName: "$company_name"
1328
}
1329
}
1329
JS;
1330
JS;
Línea 1330... Línea 1331...
1330
 
1331
 
1331
$this->inlineScript()->appendScript($js);
1332
$this->inlineScript()->appendScript($js);
Línea 1354... Línea 1355...
1354
 
1355
 
1355
<!-- Content Header (Page header) -->
1356
<!-- Content Header (Page header) -->
1356
<div id="profile">
1357
<div id="profile">
Línea 1357... Línea -...
1357
</div>
-
 
1358
 
-
 
1359
<section class="content-header">
-
 
1360
    <div class="container-fluid">
-
 
1361
        <div class="row mb-2">
-
 
1362
            <div class="col-sm-12">
-
 
1363
                <h1>LABEL_PROFILE</h1>
-
 
1364
            </div>
-
 
1365
        </div>
-
 
1366
    </div>
-
 
1367
    <!-- /.container-fluid -->
-
 
1368
</section>
-
 
1369
<input type="text" name="test" id="test" style="display: none">
-
 
1370
<div class="row">
-
 
1371
    <div class="col-12">
-
 
1372
        <section class="cover-sec">
-
 
1373
            <img id="user-cover-img" src="<?php echo $this->url('storage', ['type' => 'company-cover', 'code' => $currentCompany->uuid, 'filename' => $cover]) ?>" alt="">
-
 
1374
            <div class="add-pic-box change-cover-image">
-
 
1375
                <div class="container">
-
 
1376
                    <div class="row no-gutters">
-
 
1377
                        <div class="col-lg-12 col-sm-12">
-
 
1378
                            <a href="#" class="btn-cover-open">
-
 
1379
                                <i class="fa fa-camera"></i>
-
 
1380
                            </a>
-
 
1381
                        </div>
-
 
1382
                    </div>
-
 
1383
                </div>
-
 
1384
            </div>
-
 
1385
        </section>
-
 
1386
    </div>
1358
</div>
1387
</div>
1359
 
1388
<div class="row">
1360
<div class="row">
1389
    <div class="col-lg-3">
1361
    <div class="col-lg-3">
1390
        <div class="main-left-sidebar">
1362
        <div class="main-left-sidebar">
Línea 1446... Línea 1418...
1446
        </div>
1418
        </div>
1447
        <!--main-left-sidebar end-->
1419
        <!--main-left-sidebar end-->
1448
    </div>
1420
    </div>
1449
    <div class="col-lg-6">
1421
    <div class="col-lg-6">
1450
        <div class="main-ws-sec">
1422
        <div class="main-ws-sec">
1451
            <div class="user-tab-sec rewivew">
-
 
1452
                <h3><?php echo $company_name ?></h3>
-
 
1453
            </div>
-
 
1454
            <!--user-tab-sec end-->
-
 
1455
            <div class="user-profile-extended-ov">
-
 
1456
                <h3>
-
 
1457
                    LABEL_OVERVIEW <a href="#" title="" class="btn-extended-edit"><i class="fa fa-pencil"></i></a>
-
 
1458
                </h3>
-
 
1459
                <span id="overview-description"><?php echo $overview ?></span>
-
 
1460
            </div>
-
 
1461
            <div class="user-profile-extended-ov st2">
-
 
1462
                <h3>
-
 
1463
                    LABEL_LOCATIONS
-
 
1464
                    <a href="#" title="" class="btn-location-add"> <i class="fa fa-plus-square"></i></a>
-
 
1465
                </h3>
-
 
1466
                <span id="locations-records">
-
 
1467
                    <?php
-
 
1468
                    $max = count($locations);
-
 
1469
                    for ($i = 0; $i < $max; $i++) :
-
 
1470
                        $location = $locations[$i];
-
 
1471
 
-
 
1472
                    ?>
-
 
1473
                        <p>
-
 
1474
                            <?php echo $location['formatted_address']   ?><?php echo $location['is_main'] == 'y' ? ' (LABEL_MAIN_LOCATION) ' : '' ?>
-
 
1475
                            <a href="#" title="" data-link="<?php echo $location['link_edit'] ?>" class="btn-location-edit"><i class="fa fa-pencil"></i></a>&nbsp;
-
 
1476
                            <a href="#" title="" data-link="<?php echo $location['link_delete'] ?>" class="btn-location-delete"><i class="fa fa-trash"></i></a>
-
 
1477
                        </p>
-
 
1478
                        <?php if ($i < ($max - 1)) : ?>
-
 
1479
                            <hr />
-
 
1480
                        <?php endif; ?>
-
 
1481
                    <?php endfor; ?>
-
 
1482
                </span>
-
 
1483
            </div>
-
 
1484
            <!--user-profile-ov end-->
-
 
1485
            <div class="user-profile-ov">
-
 
1486
                <h3>
-
 
1487
                    LABEL_INDUSTRY <a href="#" title="" class="btn-industry-edit"><i class="fa fa-pencil"></i></a>
-
 
1488
                </h3>
-
 
1489
                <span id="overview-industry"><?php echo $industry ?><span>
-
 
1490
            </div>
-
 
1491
            <!--user-profile-ov end-->
-
 
1492
            <!--user-profile-ov end-->
-
 
1493
            <div class="user-profile-ov">
-
 
1494
                <h3>
-
 
1495
                    LABEL_COMPANY_SIZE <a href="#" title="" class="btn-company-size-edit"><i class="fa fa-pencil"></i></a>
-
 
1496
                </h3>
-
 
1497
                <span id="overview-company-size"><?php echo $company_size ?></span>
-
 
1498
            </div>
-
 
1499
            <!--user-profile-ov end-->
-
 
1500
            <!--user-profile-ov end-->
-
 
1501
            <div class="user-profile-ov">
1423
            <div class="user-profile-ov">
1502
                <h3>
1424
                <h3>
1503
                    LABEL_FOUNDATION_YEAR <a href="#" title="" class="btn-foundation-year-edit"><i class="fa fa-pencil"></i></a>
1425
                    LABEL_FOUNDATION_YEAR <a href="#" title="" class="btn-foundation-year-edit"><i class="fa fa-pencil"></i></a>
1504
                </h3>
1426
                </h3>
1505
                <span id="overview-foundation-year"><?php echo $foundation_year ?></span>
1427
                <span id="overview-foundation-year"><?php echo $foundation_year ?></span>